1
0
mirror of https://github.com/docker/cli.git synced 2026-01-18 08:21:31 +03:00

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

Signed-off-by: Harald Albers <github@albersweb.de>
Upstream-commit: e338af7123
Component: cli
This commit is contained in:
Harald Albers
2016-03-28 06:11:52 -07:00
committed by Tibor Vass
parent 2a26bafd95
commit 5a0476d383

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