Merge pull request #19633 from albers/completion-ps-filter-dead
bash completion for `docker ps --filter status=dead`
This commit is contained in:
commit
a3cfdb5a31
1 changed files with 1 additions and 1 deletions
|
@ -1423,7 +1423,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