Age | Commit message (Collapse) | Author |
|
Update `docker` plugin from [docker/cli master](https://github.com/tommilligan/cli/blob/master/contrib/completion/zsh/_docker)
- bugfix for `docker update` autocompletion: https://github.com/docker/cli/pull/1232
- added `scope` subcommand: https://github.com/docker/cli/pull/1227/files
|
|
* use https everywhere
* use https links on the files that are left
Also, removed some broken links and updated redirections.
|
|
|
|
Signed-off-by: Troy Fontaine <tfontaine@troyfontaine.com>
|
|
|
|
|
|
missing \ was causing command not found errors when tab completing docker build -t <tab>
|
|
Closes #5683
|
|
Closes #5568
Source:
https://github.com/docker/docker/commit/c9fdf9abf8d6443598808809b900d96e04adfcb1
|
|
https://github.com/docker/docker/blob/be9e3f59e625a7be05f21a23f6debfb3f6728573/contrib/completion/zsh/_docker
|
|
See https://github.com/docker/docker/blob/master/contrib/completion/zsh/_docker
Signed-off-by: Brian Goff <cpuguy83@gmail.com>
|
|
completion script
|
|
|
|
|
|
|
|
need the container autocomplete without being running, like start, now it autocompletes showing all the containers so you can start without knowing the right name
|
|
docker containers based on defined names
|
|
|
|
docker container autocomplete listing uses containers ID instead of names.
Most users identify their containers by name. ID is only needed and used on a dynamic environment more suited in scripts.
|
|
|
|
|
|
This is exactly what happens on tab completion for docker rmi. This commit
fixes that.
```sh
$ docker rmi <hit TAB>
_arguments:comparguments:312: invalid argument: __docker_images
_arguments:comparguments:312: invalid argument: __docker_images
_arguments:comparguments:312: invalid argument: __docker_images
```
|
|
Many deprecations since 0.8 and new commands.
|
|
|
|
|
|
|