From a4a8b6561706c2dd0c61e0f9eda60b85593b656c Mon Sep 17 00:00:00 2001 From: Valentin Lab Date: Tue, 8 Oct 2019 10:41:03 +0200 Subject: [PATCH] fix: remove subordinates from service list for final call of ``docker-compose`` --- bin/compose-core | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/compose-core b/bin/compose-core index 9b2d64b..a29149d 100755 --- a/bin/compose-core +++ b/bin/compose-core @@ -4072,6 +4072,8 @@ if [ "$is_docker_compose_action" -a "${#services_args[@]}" -gt 0 ]; then else action_posargs+=("${services[@]}") fi + ## Get rid of subordinates + action_posargs=($(get_master_services "${action_posargs[@]}")) || exit 1 fi