mirror of
https://github.com/docker/cli.git
synced 2026-01-15 07:40:57 +03:00
Merge pull request #31194 from albers/completion-volume-aliases
Add support for command aliases to bash completion of `docker volume` Upstream-commit: c6e102c830716b016ea56056555631112e5348d2 Component: engine
This commit is contained in:
@@ -4244,6 +4244,10 @@ _docker_volume_inspect() {
|
||||
esac
|
||||
}
|
||||
|
||||
_docker_volume_list() {
|
||||
_docker_volume_ls
|
||||
}
|
||||
|
||||
_docker_volume_ls() {
|
||||
local key=$(__docker_map_key_of_current_option '--filter|-f')
|
||||
case "$key" in
|
||||
@@ -4287,6 +4291,10 @@ _docker_volume_prune() {
|
||||
esac
|
||||
}
|
||||
|
||||
_docker_volume_remove() {
|
||||
_docker_volume_rm
|
||||
}
|
||||
|
||||
_docker_volume_rm() {
|
||||
case "$cur" in
|
||||
-*)
|
||||
@@ -4306,7 +4314,11 @@ _docker_volume() {
|
||||
prune
|
||||
rm
|
||||
"
|
||||
__docker_subcommands "$subcommands" && return
|
||||
local aliases="
|
||||
list
|
||||
remove
|
||||
"
|
||||
__docker_subcommands "$subcommands $aliases" && return
|
||||
|
||||
case "$cur" in
|
||||
-*)
|
||||
|
||||
Reference in New Issue
Block a user