Add bash completion for `create --build`

Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
Harald Albers 2017-08-25 09:59:39 +02:00 committed by Joffrey F
parent e62c403326
commit b28bcd613a
1 changed files with 1 additions and 1 deletions

View File

@ -149,7 +149,7 @@ _docker_compose_config() {
_docker_compose_create() {
case "$cur" in
-*)
COMPREPLY=( $( compgen -W "--force-recreate --help --no-build --no-recreate" -- "$cur" ) )
COMPREPLY=( $( compgen -W "--build --force-recreate --help --no-build --no-recreate" -- "$cur" ) )
;;
*)
__docker_compose_services_all