Browse Source

Merge pull request #28356 from albers/completion-fix-ps--filter-is-task

Fix bash completion for `docker ps --filter is-task`
Akihiro Suda 8 years ago
parent
commit
de5d4701e3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      contrib/completion/bash/docker

+ 1 - 1
contrib/completion/bash/docker

@@ -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
 			;;