Improve bash completion for `stack deploy`

This adds completion of stack names, which is very useful when updating
existing stacks.

Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
Harald Albers 2017-08-08 17:56:04 +02:00
parent 227e042ff0
commit d2d4dbf5af
1 changed files with 7 additions and 0 deletions

View File

@ -4331,6 +4331,12 @@ _docker_stack_deploy() {
__docker_daemon_is_experimental && options+=" --bundle-file" __docker_daemon_is_experimental && options+=" --bundle-file"
COMPREPLY=( $( compgen -W "$options" -- "$cur" ) ) COMPREPLY=( $( compgen -W "$options" -- "$cur" ) )
;; ;;
*)
local counter=$(__docker_pos_first_nonflag '--compose-file|-c|--bundle-file')
if [ "$cword" -eq "$counter" ]; then
__docker_complete_stacks
fi
;;
esac esac
} }
@ -4408,6 +4414,7 @@ _docker_stack_rm() {
;; ;;
*) *)
__docker_complete_stacks __docker_complete_stacks
;;
esac esac
} }