瀏覽代碼

Merge pull request #17829 from albers/completion-stats--all

bash completion for `docker stats --all`
David Calavera 9 年之前
父節點
當前提交
e1910a8e23
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      contrib/completion/bash/docker

+ 1 - 1
contrib/completion/bash/docker

@@ -1607,7 +1607,7 @@ _docker_start() {
 _docker_stats() {
 	case "$cur" in
 		-*)
-			COMPREPLY=( $( compgen -W "--no-stream --help" -- "$cur" ) )
+			COMPREPLY=( $( compgen -W "--all -a --help --no-stream" -- "$cur" ) )
 			;;
 		*)
 			__docker_containers_running