bash completion for `docker {run,create} --userns`

Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
Harald Albers 2016-03-28 06:11:52 -07:00 committed by Tibor Vass
parent 2a3935e24a
commit e338af7123
1 changed files with 5 additions and 0 deletions

View File

@ -1668,6 +1668,7 @@ _docker_run() {
--tmpfs
--ulimit
--user -u
--userns
--uts
--volume-driver
--volumes-from
@ -1827,6 +1828,10 @@ _docker_run() {
__docker_complete_user_group
return
;;
--userns)
COMPREPLY=( $( compgen -W "host" -- "$cur" ) )
return
;;
--volume-driver)
__docker_complete_plugins Volume
return