mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Add some missing events to bash completion
Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
parent
81964ca555
commit
ea26b38784
1 changed files with 27 additions and 1 deletions
|
@ -391,7 +391,33 @@ _docker_events() {
|
||||||
return
|
return
|
||||||
;;
|
;;
|
||||||
*event=*)
|
*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
|
return
|
||||||
;;
|
;;
|
||||||
*image=*)
|
*image=*)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue