mirror of https://github.com/docker/cli.git
Fix invalid plugin references in docs
The plugins `tiborvass/sample-volume-plugins` and `tiborvass/no-remove` do not exist. Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
parent
f7b78dc137
commit
2dca576a4c
|
@ -189,13 +189,13 @@ Stdout of a plugin is redirected to dockerd logs. Such entries have a
|
|||
corresponding log entries in the docker daemon logs.
|
||||
|
||||
```bash
|
||||
$ docker plugin install tiborvass/sample-volume-plugins
|
||||
$ docker plugin install tiborvass/sample-volume-plugin
|
||||
|
||||
INFO[0036] Starting... Found 0 volumes on startup plugin=f52a3df433b9aceee436eaada0752f5797aab1de47e5485f1690a073b860ff62
|
||||
```
|
||||
|
||||
```bash
|
||||
$ docker volume create -d tiborvass/sample-volume-plugins samplevol
|
||||
$ docker volume create -d tiborvass/sample-volume-plugin samplevol
|
||||
|
||||
INFO[0193] Create Called... Ensuring directory /data/samplevol exists on host... plugin=f52a3df433b9aceee436eaada0752f5797aab1de47e5485f1690a073b860ff62
|
||||
INFO[0193] open /var/lib/docker/plugin-data/local-persist.json: no such file or directory plugin=f52a3df433b9aceee436eaada0752f5797aab1de47e5485f1690a073b860ff62
|
||||
|
|
|
@ -68,9 +68,9 @@ might have multiple capabilities. Currently `volumedriver`, `networkdriver`,
|
|||
`ipamdriver`, `logdriver`, `metricscollector`, and `authz` are supported capabilities.
|
||||
|
||||
```bash
|
||||
$ docker plugin install --disable tiborvass/no-remove
|
||||
$ docker plugin install --disable vieux/sshfs
|
||||
|
||||
tiborvass/no-remove
|
||||
Installed plugin vieux/sshfs
|
||||
|
||||
$ docker plugin ls --filter enabled=true
|
||||
|
||||
|
@ -102,7 +102,7 @@ The following example uses a template without headers and outputs the
|
|||
```bash
|
||||
$ docker plugin ls --format "{{.ID}}: {{.Name}}"
|
||||
|
||||
4be01827a72e: tiborvass/no-remove
|
||||
4be01827a72e: vieux/sshfs:latest
|
||||
```
|
||||
|
||||
## Related commands
|
||||
|
|
Loading…
Reference in New Issue