mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Fix bash completion for docker ps --filter is-task
Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
parent
c8492ebc5d
commit
7b6a38e1b1
1 changed files with 1 additions and 1 deletions
|
@ -1121,7 +1121,7 @@ _docker_container_ls() {
|
|||
|
||||
case "$prev" in
|
||||
--filter|-f)
|
||||
COMPREPLY=( $( compgen -S = -W "ancestor before exited health id label name network since status volume" -- "$cur" ) )
|
||||
COMPREPLY=( $( compgen -S = -W "ancestor before exited health id is-task label name network since status volume" -- "$cur" ) )
|
||||
__docker_nospace
|
||||
return
|
||||
;;
|
||||
|
|
Loading…
Add table
Reference in a new issue