Improve bash completion for `create|run --stop-signal`

Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
Harald Albers 2017-03-09 09:06:35 +01:00 committed by Tibor Vass
parent f6f45c14ec
commit fa5297b853
1 changed files with 4 additions and 0 deletions

View File

@ -1704,6 +1704,10 @@ _docker_container_run_and_create() {
fi
return
;;
--stop-signal)
__docker_complete_signals
return
;;
--storage-opt)
COMPREPLY=( $( compgen -W "size" -S = -- "$cur") )
__docker_nospace