mirror of https://github.com/docker/cli.git
Improve bash completion for `create|run --stop-signal`
Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
parent
f6f45c14ec
commit
fa5297b853
|
@ -1704,6 +1704,10 @@ _docker_container_run_and_create() {
|
||||||
fi
|
fi
|
||||||
return
|
return
|
||||||
;;
|
;;
|
||||||
|
--stop-signal)
|
||||||
|
__docker_complete_signals
|
||||||
|
return
|
||||||
|
;;
|
||||||
--storage-opt)
|
--storage-opt)
|
||||||
COMPREPLY=( $( compgen -W "size" -S = -- "$cur") )
|
COMPREPLY=( $( compgen -W "size" -S = -- "$cur") )
|
||||||
__docker_nospace
|
__docker_nospace
|
||||||
|
|
Loading…
Reference in New Issue