Merge pull request #19778 from albers/completion-volume-ls-dangling
Improve bash completion for `docker volume ls -f dangling` Upstream-commit: 38424b73d91b8d5774115dee0e083c4d3957623c Component: engine
This commit is contained in:
@ -2002,7 +2002,8 @@ _docker_volume_inspect() {
|
||||
_docker_volume_ls() {
|
||||
case "$prev" in
|
||||
--filter|-f)
|
||||
COMPREPLY=( $( compgen -W "dangling" -- "$cur" ) )
|
||||
COMPREPLY=( $( compgen -S = -W "dangling" -- "$cur" ) )
|
||||
__docker_nospace
|
||||
return
|
||||
;;
|
||||
esac
|
||||
|
||||
Reference in New Issue
Block a user