mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
bash completion for docker ps --filter status=dead
Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
parent
ec60923688
commit
dc41fad580
1 changed files with 1 additions and 1 deletions
|
@ -1442,7 +1442,7 @@ _docker_ps() {
|
|||
return
|
||||
;;
|
||||
*status=*)
|
||||
COMPREPLY=( $( compgen -W "exited paused restarting running" -- "${cur#=}" ) )
|
||||
COMPREPLY=( $( compgen -W "created dead exited paused restarting running" -- "${cur#=}" ) )
|
||||
return
|
||||
;;
|
||||
esac
|
||||
|
|
Loading…
Add table
Reference in a new issue