bash completion for `docker ps --filter network`

Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
Harald Albers 2016-06-07 12:44:17 -07:00
parent 8cd6977f98
commit 337eaab5d1
1 changed files with 6 additions and 1 deletions

View File

@ -1516,6 +1516,11 @@ _docker_ps() {
__docker_complete_container_names
return
;;
network)
cur="${cur##*=}"
__docker_complete_networks
return
;;
since)
cur="${cur##*=}"
__docker_complete_containers_all
@ -1534,7 +1539,7 @@ _docker_ps() {
case "$prev" in
--filter|-f)
COMPREPLY=( $( compgen -S = -W "ancestor before exited id label name since status volume" -- "$cur" ) )
COMPREPLY=( $( compgen -S = -W "ancestor before exited id label name network since status volume" -- "$cur" ) )
__docker_nospace
return
;;