Add some missing events to bash completion

Signed-off-by: Harald Albers <github@albersweb.de>
Upstream-commit: 23256b7438
Component: cli
This commit is contained in:
Harald Albers
2015-07-07 08:58:35 +02:00
committed by Tibor Vass
parent 2396d45eac
commit 6553295dca

View File

@ -391,7 +391,33 @@ _docker_events() {
return
;;
*event=*)
COMPREPLY=( $( compgen -W "create destroy die export kill pause restart start stop unpause" -- "${cur#=}" ) )
COMPREPLY=( $( compgen -W "
attach
commit
copy
create
delete
destroy
die
exec_create
exec_start
export
import
kill
oom
pause
pull
push
rename
resize
restart
start
stop
tag
top
unpause
untag
" -- "${cur#=}" ) )
return
;;
*image=*)