Add bash completion for `config --resolve-image-digests|--volumes"`

Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
Harald Albers 2017-03-19 08:00:35 -07:00
parent 9d2c6f156b
commit 5fdbd5026a
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ _docker_compose_bundle() {
_docker_compose_config() {
COMPREPLY=( $( compgen -W "--help --quiet -q --services" -- "$cur" ) )
COMPREPLY=( $( compgen -W "--help --quiet -q --resolve-image-digests --services --volumes" -- "$cur" ) )
}