mirror of https://github.com/docker/docs.git
Merge pull request #17829 from albers/completion-stats--all
bash completion for `docker stats --all`
This commit is contained in:
commit
e1910a8e23
|
@ -1607,7 +1607,7 @@ _docker_start() {
|
||||||
_docker_stats() {
|
_docker_stats() {
|
||||||
case "$cur" in
|
case "$cur" in
|
||||||
-*)
|
-*)
|
||||||
COMPREPLY=( $( compgen -W "--no-stream --help" -- "$cur" ) )
|
COMPREPLY=( $( compgen -W "--all -a --help --no-stream" -- "$cur" ) )
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
__docker_containers_running
|
__docker_containers_running
|
||||||
|
|
Loading…
Reference in New Issue