add zsh completion for push

Signed-off-by: Ke Xu <leonhartx.k@gmail.com>
This commit is contained in:
Ke Xu 2016-06-27 18:00:52 +09:00
parent 5c1abe2e29
commit a0a90b2352
1 changed files with 6 additions and 0 deletions

View File

@ -278,6 +278,12 @@ __docker-compose_subcommand() {
'--ignore-pull-failures[Pull what it can and ignores images with pull failures.]' \ '--ignore-pull-failures[Pull what it can and ignores images with pull failures.]' \
'*:services:__docker-compose_services_from_image' && ret=0 '*:services:__docker-compose_services_from_image' && ret=0
;; ;;
(push)
_arguments \
$opts_help \
'--ignore-push-failures[Push what it can and ignores images with push failures.]' \
'*:services:__docker-compose_services' && ret=0
;;
(rm) (rm)
_arguments \ _arguments \
$opts_help \ $opts_help \