Add missing log drivers to bash completion

Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
Harald Albers 2015-07-13 16:59:34 +02:00 committed by Tibor Vass
parent c15fdb2435
commit e00293bec8
1 changed files with 13 additions and 2 deletions

View File

@ -182,6 +182,17 @@ __docker_capabilities() {
" -- "$cur" ) )
}
__docker_log_drivers() {
COMPREPLY=( $( compgen -W "
fluentd
gelf
journald
json-file
none
syslog
" -- "$cur" ) )
}
# a selection of the available signals that is most likely of interest in the
# context of docker containers.
__docker_signals() {
@ -222,7 +233,7 @@ _docker_docker() {
return
;;
--log-driver)
COMPREPLY=( $( compgen -W "json-file syslog none" -- "$cur" ) )
__docker_log_drivers
return
;;
--log-level|-l)
@ -941,7 +952,7 @@ _docker_run() {
return
;;
--log-driver)
COMPREPLY=( $( compgen -W "json-file syslog none" -- "$cur") )
__docker_log_drivers
return
;;
--net)