Skip to content

Commit

Permalink
Merge pull request moby#28094 from albers/completion-system-df
Browse files Browse the repository at this point in the history
Add bash completion for `docker system df`
  • Loading branch information
AkihiroSuda authored Nov 7, 2016
2 parents afb1119 + 0917205 commit 67a2471
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions contrib/completion/bash/docker
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit 67a2471

Please sign in to comment.