mirror of
https://github.com/moghtech/komodo.git
synced 2026-03-09 07:13:36 -05:00
[bug] File on server doesn't find docker-compose.yml file #150
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @tm-brg on GitHub (Dec 9, 2024).
I use 1.16.12, I have a compose file but I can't redeploy it because komodo doesn't find the file on the server but the path is good.
@mbecker20 commented on GitHub (Dec 11, 2024):
If you are running Periphery in docker container, the path is seen from inside container. You have to mount the file into the container.
Note that the mount should be the same on both side, like
- /home/ubuntu/docker:/home/ubuntu/docker. This ensures that relative file mounts will work correctly, re this discussion: https://github.com/mbecker20/komodo/discussions/180@froststevefrost commented on GitHub (Dec 20, 2024):
This worked for me, thank you!