Skip to content

Commit

Permalink
Add bash completion for stack deploy --resolve-image
Browse files Browse the repository at this point in the history
Also adds minimal documentation for this flag.

Signed-off-by: Harald Albers <github@albersweb.de>
  • Loading branch information
albers committed Oct 9, 2017
1 parent fb7a817 commit 6ccd4bd
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
8 changes: 6 additions & 2 deletions contrib/completion/bash/docker
Original file line number Diff line number Diff line change
Expand Up @@ -4346,16 +4346,20 @@ _docker_stack_deploy() {
_filedir yml
return
;;
--resolve-image)
COMPREPLY=( $( compgen -W "always changed never" -- "$cur" ) )
return
;;
esac

case "$cur" in
-*)
local options="--compose-file -c --help --prune --with-registry-auth"
local options="--compose-file -c --help --prune --resolve-image --with-registry-auth"
__docker_daemon_is_experimental && options+=" --bundle-file"
COMPREPLY=( $( compgen -W "$options" -- "$cur" ) )
;;
*)
local counter=$(__docker_pos_first_nonflag '--compose-file|-c|--bundle-file')
local counter=$(__docker_pos_first_nonflag '--bundle-file|--compose-file|-c|--resolve-image')
if [ "$cword" -eq "$counter" ]; then
__docker_complete_stacks
fi
Expand Down
11 changes: 6 additions & 5 deletions docs/reference/commandline/stack_deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,12 @@ Aliases:
deploy, up

Options:
--bundle-file string Path to a Distributed Application Bundle file
-c, --compose-file string Path to a Compose file
--help Print usage
--prune Prune services that are no longer referenced
--with-registry-auth Send registry authentication details to Swarm agents
--bundle-file string Path to a Distributed Application Bundle file
-c, --compose-file string Path to a Compose file
--help Print usage
--prune Prune services that are no longer referenced
--resolve-image string Query the registry to resolve image digest and supported platforms ("always"|"changed"|"never") (default "always")
--with-registry-auth Send registry authentication details to Swarm agents
```

## Description
Expand Down

0 comments on commit 6ccd4bd

Please sign in to comment.