bash completion for `docker-compose push`

Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
Harald Albers 2016-06-22 17:19:20 +02:00
parent 352cdf0a80
commit f49b624d95
1 changed files with 13 additions and 0 deletions

View File

@ -304,6 +304,18 @@ _docker_compose_pull() {
} }
_docker_compose_push() {
case "$cur" in
-*)
COMPREPLY=( $( compgen -W "--help --ignore-push-failures" -- "$cur" ) )
;;
*)
__docker_compose_services_all
;;
esac
}
_docker_compose_restart() { _docker_compose_restart() {
case "$prev" in case "$prev" in
--timeout|-t) --timeout|-t)
@ -467,6 +479,7 @@ _docker_compose() {
port port
ps ps
pull pull
push
restart restart
rm rm
run run