Merge pull request #28094 from albers/completion-system-df

Add bash completion for `docker system df`
This commit is contained in:
Akihiro Suda 2016-11-07 17:31:27 +09:00 committed by GitHub
commit 67a247154c
1 changed files with 5 additions and 2 deletions

View File

@ -3117,9 +3117,12 @@ _docker_system() {
esac
}
# TODO new command
_docker_system_df() {
:
case "$cur" in
-*)
COMPREPLY=( $( compgen -W "--help --verbose -v" -- "$cur" ) )
;;
esac
}
_docker_system_events() {