|
@ -2960,7 +2960,12 @@ case "$action" in |
|
|
config) |
|
|
config) |
|
|
## removing the services |
|
|
## removing the services |
|
|
services=($(get_master_services "${action_posargs[@]}")) || exit 1 |
|
|
services=($(get_master_services "${action_posargs[@]}")) || exit 1 |
|
|
launch_docker_compose "${compose_opts[@]}" "$action" "${action_opts[@]}" "${remainder_args[@]}" |
|
|
|
|
|
|
|
|
## forcing docker-compose config to output the config file to stdout and not stderr |
|
|
|
|
|
out=$(launch_docker_compose "${compose_opts[@]}" "$action" "${action_opts[@]}" "${remainder_args[@]}" 2>&1) || { |
|
|
|
|
|
echo "$out" |
|
|
|
|
|
exit 1 |
|
|
|
|
|
} |
|
|
|
|
|
echo "$out" |
|
|
warn "Runtime configuration modification (from relations) are not included here." |
|
|
warn "Runtime configuration modification (from relations) are not included here." |
|
|
;; |
|
|
;; |
|
|
down) |
|
|
down) |
|
|