Only complete swarm specific options with orchestrator=swarm

Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
Harald Albers 2018-08-01 13:49:24 +02:00
parent ff953751d3
commit 8ef01e869e
1 changed files with 3 additions and 2 deletions

View File

@ -4435,8 +4435,9 @@ _docker_stack_deploy() {
case "$cur" in
-*)
local options="--compose-file -c --help --prune --resolve-image --with-registry-auth"
__docker_daemon_is_experimental && options+=" --bundle-file"
local options="--compose-file -c --help"
__docker_daemon_is_experimental && __docker_stack_orchestrator_is swarm && options+=" --bundle-file"
__docker_stack_orchestrator_is swarm && options+=" --prune --resolve-image --with-registry-auth"
COMPREPLY=( $( compgen -W "$options" -- "$cur" ) )
;;
*)