diff --git a/bin/periphery/src/api/compose.rs b/bin/periphery/src/api/compose.rs index a5a28a209..e600efbfe 100644 --- a/bin/periphery/src/api/compose.rs +++ b/bin/periphery/src/api/compose.rs @@ -372,7 +372,7 @@ impl Resolve 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, ) diff --git a/bin/periphery/src/compose.rs b/bin/periphery/src/compose.rs index 2bb8877d6..549a11df7 100644 --- a/bin/periphery/src/compose.rs +++ b/bin/periphery/src/compose.rs @@ -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(),