1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #27881 from albers/completion-ps--filter-health

Add bash completion for `docker ps --filter health`
This commit is contained in:
Sebastiaan van Stijn 2016-10-29 10:05:24 -07:00 committed by GitHub
commit e1369f2f39

View file

@ -1089,6 +1089,10 @@ _docker_container_ls() {
__docker_complete_containers_all --cur "${cur##*=}" --id __docker_complete_containers_all --cur "${cur##*=}" --id
return return
;; ;;
health)
COMPREPLY=( $( compgen -W "healthy starting none unhealthy" -- "${cur##*=}" ) )
return
;;
is-task) is-task)
COMPREPLY=( $( compgen -W "true false" -- "${cur##*=}" ) ) COMPREPLY=( $( compgen -W "true false" -- "${cur##*=}" ) )
return return
@ -1117,7 +1121,7 @@ _docker_container_ls() {
case "$prev" in case "$prev" in
--filter|-f) --filter|-f)
COMPREPLY=( $( compgen -S = -W "ancestor before exited id label name network since status volume" -- "$cur" ) ) COMPREPLY=( $( compgen -S = -W "ancestor before exited health id label name network since status volume" -- "$cur" ) )
__docker_nospace __docker_nospace
return return
;; ;;