mirror of
https://github.com/moghtech/komodo.git
synced 2026-07-16 01:59:56 -05:00
[GH-ISSUE #698] [Feature] Support configurable env file ordering #18595
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 @nicolas-r on GitHub (Jul 31, 2025).
Original GitHub issue: https://github.com/moghtech/komodo/issues/698
In my compose,yaml file, I'm using variables for the volumes
The variables are defined in a file container.env that is stored in the git repo.
The "DOCKER_VOLUMES_ROOT_DIR" variable is set in Komodo UI
When I deploy the stack, everything works fine.
But when I go to the "Info" tab to check the "Deployed config", I see that
It seems that there is an issue with the interpolation of the variables for the paths of the volume that are displayed.
I have checked the container and it uses the correct paths
@mbecker20 commented on GitHub (Aug 30, 2025):
Since the Komodo environment is applied after the environment in your repo, at the time the repo environment is loaded the DOCKER_VOLUMES_ROOT_DIR is not set. So NAVIDROME_DATA_DIR is being set to /navidrome/data.
There currently is no way to change the ordering the env files are applied. I updated the issue as this is what is needed to allow for this usage of Komodo environment vars within repo .env files.