From 2dca576a4c57b428834f667ec5e81b94745baa3b Mon Sep 17 00:00:00 2001 From: Harald Albers Date: Mon, 7 Aug 2017 11:04:05 +0200 Subject: [PATCH] Fix invalid plugin references in docs The plugins `tiborvass/sample-volume-plugins` and `tiborvass/no-remove` do not exist. Signed-off-by: Harald Albers --- docs/extend/index.md | 4 ++-- docs/reference/commandline/plugin_ls.md | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/extend/index.md b/docs/extend/index.md index 1abec33a24..3d304128a3 100644 --- a/docs/extend/index.md +++ b/docs/extend/index.md @@ -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 diff --git a/docs/reference/commandline/plugin_ls.md b/docs/reference/commandline/plugin_ls.md index 3e2b740dbf..fa517bb5e3 100644 --- a/docs/reference/commandline/plugin_ls.md +++ b/docs/reference/commandline/plugin_ls.md @@ -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