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>
Upstream-commit: d2d4dbf5af
Component: cli
This commit is contained in:
Harald Albers
2017-08-08 17:56:04 +02:00
parent bee0cb9a32
commit 8ce8f74288

View File

@ -4331,6 +4331,12 @@ _docker_stack_deploy() {
__docker_daemon_is_experimental && options+=" --bundle-file"
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
}
@ -4408,6 +4414,7 @@ _docker_stack_rm() {
;;
*)
__docker_complete_stacks
;;
esac
}