mirror of https://github.com/docker/cli.git
Merge pull request #423 from albers/docs-fix-invalid-plugins
Fix invalid plugin references in docs
This commit is contained in:
commit
eb4672c149
|
@ -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.
|
corresponding log entries in the docker daemon logs.
|
||||||
|
|
||||||
```bash
|
```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
|
INFO[0036] Starting... Found 0 volumes on startup plugin=f52a3df433b9aceee436eaada0752f5797aab1de47e5485f1690a073b860ff62
|
||||||
```
|
```
|
||||||
|
|
||||||
```bash
|
```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] 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
|
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.
|
`ipamdriver`, `logdriver`, `metricscollector`, and `authz` are supported capabilities.
|
||||||
|
|
||||||
```bash
|
```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
|
$ docker plugin ls --filter enabled=true
|
||||||
|
|
||||||
|
@ -102,7 +102,7 @@ The following example uses a template without headers and outputs the
|
||||||
```bash
|
```bash
|
||||||
$ docker plugin ls --format "{{.ID}}: {{.Name}}"
|
$ docker plugin ls --format "{{.ID}}: {{.Name}}"
|
||||||
|
|
||||||
4be01827a72e: tiborvass/no-remove
|
4be01827a72e: vieux/sshfs:latest
|
||||||
```
|
```
|
||||||
|
|
||||||
## Related commands
|
## Related commands
|
||||||
|
|
Loading…
Reference in New Issue