Move zsh completion logic to new subcommand: import
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com> Upstream-commit: a4656e46f77c11aa27fa8e1f37398ea9b8c4738c Component: engine
This commit is contained in:
@ -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
|
||||
@ -2093,12 +2098,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) \
|
||||
|
||||
Reference in New Issue
Block a user