1
0
mirror of https://github.com/docker/cli.git synced 2026-01-18 08:21:31 +03:00

Move zsh completion logic to new subcommand: import

Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
Upstream-commit: f8829f20b4
Component: cli
This commit is contained in:
Steve Durrheimer
2016-10-30 21:44:37 +01:00
committed by Tibor Vass
parent aac306431a
commit 3ddf6bee0b

View File

@@ -933,7 +933,12 @@ __docker_image_subcommand() {
"($help -)*: :__docker_complete_images" && ret=0
;;
(import)
__docker_subcommand && ret=0
_arguments $(__docker_arguments) \
$opts_help \
"($help)*"{-c=,--change=}"[Apply Dockerfile instruction to the created image]:Dockerfile:_files" \
"($help -m --message)"{-m=,--message=}"[Commit message for imported image]:message: " \
"($help -):URL:(- http:// file://)" \
"($help -): :__docker_complete_repositories_with_tags" && ret=0
;;
(inspect)
__docker_subcommand && ret=0
@@ -2099,12 +2104,7 @@ __docker_subcommand() {
esac
;;
(import)
_arguments $(__docker_arguments) \
$opts_help \
"($help)*"{-c=,--change=}"[Apply Dockerfile instruction to the created image]:Dockerfile:_files" \
"($help -m --message)"{-m=,--message=}"[Commit message for imported image]:message: " \
"($help -):URL:(- http:// file://)" \
"($help -): :__docker_complete_repositories_with_tags" && ret=0
__docker_image_subcommand && ret=0
;;
(info|version)
_arguments $(__docker_arguments) \