Merge pull request #30980 from albers/completion-mode-non-blocking
Fix bash completion for `--log-opt mode`
This commit is contained in:
commit
ca3f82752c
1 changed files with 1 additions and 1 deletions
|
@ -790,7 +790,7 @@ __docker_complete_log_driver_options() {
|
|||
return
|
||||
;;
|
||||
mode)
|
||||
COMPREPLY=( $( compgen -W "blocking nonblocking" -- "${cur##*=}" ) )
|
||||
COMPREPLY=( $( compgen -W "blocking non-blocking" -- "${cur##*=}" ) )
|
||||
return
|
||||
;;
|
||||
syslog-address)
|
||||
|
|
Loading…
Add table
Reference in a new issue