Merge pull request #428 from albers/completion-stack-deploy

Improve bash completion for `stack deploy`
master
Kenfe-Mickaël Laventure 2017-08-08 18:19:06 +02:00 committed by GitHub
commit 4b61f560b5
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"
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
}