Fix bash completion for docker ps --filter is-task

Signed-off-by: Harald Albers <github@albersweb.de>
Upstream-commit: 7b6a38e1b1e146e4350db0e38d3d7a9313232ece
Component: engine
This commit is contained in:
Harald Albers
2016-11-13 04:54:54 -08:00
parent 89b8c035b8
commit 9a718bf5f4
@@ -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
;;