1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #17134 from sdurrheimer/zsh-completion-build-multi-tag

Add zsh completion for 'docker build' multi tags
This commit is contained in:
Sebastiaan van Stijn 2015-10-26 19:05:23 +01:00
commit 74b9d89648

View file

@ -467,7 +467,7 @@ __docker_subcommand() {
"($help)--pull[Attempt to pull a newer version of the image]" \
"($help -q --quiet)"{-q,--quiet}"[Suppress verbose build output]" \
"($help)--rm[Remove intermediate containers after a successful build]" \
"($help -t --tag)"{-t,--tag=}"[Repository, name and tag for the image]: :__docker_repositories_with_tags" \
"($help -t --tag)*"{-t,--tag=}"[Repository, name and tag for the image]: :__docker_repositories_with_tags" \
"($help -):path or URL:_directories" && ret=0
;;
(commit)