bash completion for docker {run,create} --userns
Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
parent
7015195c60
commit
62475684b9
1 changed files with 5 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue