diff options
Diffstat (limited to 'plugins/docker/README.md')
-rw-r--r-- | plugins/docker/README.md | 24 |
1 files changed, 8 insertions, 16 deletions
diff --git a/plugins/docker/README.md b/plugins/docker/README.md index 231a6dcf5..4d9f3ae9b 100644 --- a/plugins/docker/README.md +++ b/plugins/docker/README.md @@ -1,19 +1,11 @@ -## Docker autocomplete plugin +# Docker plugin -- Adds autocomplete options for all docker commands. -- Will also show containerIDs and Image names where applicable +This plugin adds auto-completion for [docker](https://www.docker.com/). -####Shows help for all commands -![General Help](http://i.imgur.com/tUBO9jh.png "Help for all commands") +To use it add `docker` to the plugins array in your zshrc file. +```zsh +plugins=(... docker) +``` - -####Shows your downloaded images where applicable -![Images](http://i.imgur.com/R8ZsWO1.png "Images") - - -####Shows your running containers where applicable -![Containers](http://i.imgur.com/WQtbheg.png "Containers") - - - -Maintainer : Ahmed Azaan ([@aeonazaan](https://twitter.com/aeonazaan)) +A copy of the completion script from the docker/cli git repo: +https://github.com/docker/cli/blob/master/contrib/completion/zsh/_docker |