Add bash completion for system prune --volumes

Signed-off-by: Harald Albers <github@albersweb.de>
Upstream-commit: 36b572dfdf
Component: cli
This commit is contained in:
Harald Albers
2017-06-27 16:37:41 +02:00
parent 59836240bc
commit 7fb6cb009c

View File

@ -4322,7 +4322,7 @@ _docker_system_prune() {
case "$cur" in
-*)
COMPREPLY=( $( compgen -W "--all -a --force -f --filter --help" -- "$cur" ) )
COMPREPLY=( $( compgen -W "--all -a --force -f --filter --help --volumes" -- "$cur" ) )
;;
esac
}