the komodo env file should be highest priority over additional files

This commit is contained in:
mbecker20
2025-02-08 18:45:31 -08:00
parent 2e6e409b85
commit 01e2e0be11
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -372,7 +372,7 @@ impl Resolve<super::Args> for ComposePull {
"compose pull",
run_directory.as_ref(),
format!(
"{docker_compose} -p {project_name} -f {file_args}{env_file}{additional_env_files} pull{service_arg}",
"{docker_compose} -p {project_name} -f {file_args}{additional_env_files}{env_file} pull{service_arg}",
),
false,
)
+2 -2
View File
@@ -159,8 +159,8 @@ pub async fn compose_up(
// after performing interpolation
{
let command = format!(
"{docker_compose} -p {project_name} -f {file_args}{env_file}{additional_env_files} config --format json",
);
"{docker_compose} -p {project_name} -f {file_args}{additional_env_files}{env_file} config --format json",
);
let config_log = run_komodo_command(
"compose build",
run_directory.as_ref(),