Add some run option to bash completion

Signed-off-by: Lei Jitang <leijitang@huawei.com>
This commit is contained in:
Lei Jitang 2015-03-24 20:15:16 +08:00
Родитель 617f18b001
Коммит 7d70736015
1 изменённых файлов: 9 добавлений и 1 удалений

Просмотреть файл

@ -734,6 +734,7 @@ _docker_run() {
--attach -a --attach -a
--cap-add --cap-add
--cap-drop --cap-drop
--cgroup-parent
--cidfile --cidfile
--cpuset --cpuset
--cpu-shares -c --cpu-shares -c
@ -746,7 +747,10 @@ _docker_run() {
--expose --expose
--hostname -h --hostname -h
--ipc --ipc
--label -l
--label-file
--link --link
--log-driver
--lxc-conf --lxc-conf
--mac-address --mac-address
--memory -m --memory -m
@ -798,7 +802,7 @@ _docker_run() {
__docker_capabilities __docker_capabilities
return return
;; ;;
--cidfile|--env-file) --cidfile|--cgroup-parent|--env-file|--label-file)
_filedir _filedir
return return
;; ;;
@ -850,6 +854,10 @@ _docker_run() {
esac esac
return return
;; ;;
--log-driver)
COMPREPLY=( $( compgen -W "json-file syslog none" -- "$cur") )
return
;;
--net) --net)
case "$cur" in case "$cur" in
container:*) container:*)