mirror of
https://github.com/docker/compose.git
synced 2025-07-23 13:45:00 +02:00
zsh autocomplete: fix incorrect flag exclusions for 'create' and 'up'
Signed-off-by: Andre Eriksson <aepubemail@gmail.com>
This commit is contained in:
parent
73a1b60ced
commit
eb10f41d13
@ -198,9 +198,9 @@ __docker-compose_subcommand() {
|
|||||||
(create)
|
(create)
|
||||||
_arguments \
|
_arguments \
|
||||||
$opts_help \
|
$opts_help \
|
||||||
"(--no-recreate --no-build)--force-recreate[Recreate containers even if their configuration and image haven't changed. Incompatible with --no-recreate.]" \
|
"(--no-recreate)--force-recreate[Recreate containers even if their configuration and image haven't changed. Incompatible with --no-recreate.]" \
|
||||||
"(--force-recreate)--no-build[If containers already exist, don't recreate them. Incompatible with --force-recreate.]" \
|
"(--force-recreate)--no-recreate[If containers already exist, don't recreate them. Incompatible with --force-recreate.]" \
|
||||||
"(--force-recreate)--no-recreate[Don't build an image, even if it's missing]" \
|
"--no-build[Don't build an image, even if it's missing.]" \
|
||||||
'*:services:__docker-compose_services_all' && ret=0
|
'*:services:__docker-compose_services_all' && ret=0
|
||||||
;;
|
;;
|
||||||
(down)
|
(down)
|
||||||
@ -325,9 +325,9 @@ __docker-compose_subcommand() {
|
|||||||
'--build[Build images before starting containers.]' \
|
'--build[Build images before starting containers.]' \
|
||||||
'--no-color[Produce monochrome output.]' \
|
'--no-color[Produce monochrome output.]' \
|
||||||
"--no-deps[Don't start linked services.]" \
|
"--no-deps[Don't start linked services.]" \
|
||||||
"--force-recreate[Recreate containers even if their configuration and image haven't changed. Incompatible with --no-recreate.]" \
|
"(--no-recreate)--force-recreate[Recreate containers even if their configuration and image haven't changed. Incompatible with --no-recreate.]" \
|
||||||
"--no-recreate[If containers already exist, don't recreate them.]" \
|
"(--force-recreate)--no-recreate[If containers already exist, don't recreate them. Incompatible with --force-recreate.]" \
|
||||||
"--no-build[Don't build an image, even if it's missing]" \
|
"--no-build[Don't build an image, even if it's missing.]" \
|
||||||
"(-d)--abort-on-container-exit[Stops all containers if any container was stopped. Incompatible with -d.]" \
|
"(-d)--abort-on-container-exit[Stops all containers if any container was stopped. Incompatible with -d.]" \
|
||||||
'(-t --timeout)'{-t,--timeout}"[Specify a shutdown timeout in seconds. (default: 10)]:seconds: " \
|
'(-t --timeout)'{-t,--timeout}"[Specify a shutdown timeout in seconds. (default: 10)]:seconds: " \
|
||||||
"--remove-orphans[Remove containers for services not defined in the Compose file]" \
|
"--remove-orphans[Remove containers for services not defined in the Compose file]" \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user