mirror of https://github.com/docker/compose.git
Add bash completion for `create --build`
Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
parent
e62c403326
commit
b28bcd613a
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue