Add bash completion for `pull --parallel`

Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
Harald Albers 2017-03-20 16:37:41 +01:00 committed by Joffrey F
parent c9a9f5ab03
commit d917ca3e4e
1 changed files with 1 additions and 1 deletions

View File

@ -341,7 +341,7 @@ _docker_compose_ps() {
_docker_compose_pull() {
case "$cur" in
-*)
COMPREPLY=( $( compgen -W "--help --ignore-pull-failures" -- "$cur" ) )
COMPREPLY=( $( compgen -W "--help --ignore-pull-failures --parallel" -- "$cur" ) )
;;
*)
__docker_compose_services_from_image