mirror of https://github.com/docker/cli.git
bash completion for `docker manifest ls`
Signed-off-by: Wayne Cheng <zhengwei@tiduyun.com>
This commit is contained in:
parent
72ef456387
commit
402a3400f0
|
@ -4140,6 +4140,11 @@ _docker_manifest() {
|
|||
inspect
|
||||
push
|
||||
rm
|
||||
ls
|
||||
"
|
||||
|
||||
local aliases="
|
||||
list
|
||||
"
|
||||
__docker_subcommands "$subcommands" && return
|
||||
|
||||
|
@ -4249,6 +4254,14 @@ _docker_manifest_rm() {
|
|||
esac
|
||||
}
|
||||
|
||||
_docker_manifest_ls() {
|
||||
case "$cur" in
|
||||
-*)
|
||||
COMPREPLY=( $( compgen -W "--format --help --quiet -q" -- "$cur" ) )
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
_docker_node() {
|
||||
local subcommands="
|
||||
demote
|
||||
|
|
Loading…
Reference in New Issue