mirror of https://github.com/docker/cli.git
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:
parent
227e042ff0
commit
d2d4dbf5af
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue