Skip to content

Commit 4e5b668

Browse files
committed
Merge pull request moby#31596 from rootsongjc/dry-run-test
Wrong entrypoint in docker plugin example (cherry picked from commit 0bc84fc) Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
1 parent 4fdfe3a commit 4e5b668

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/extend/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ Consider the following `config.json` file.
207207
{
208208
"description": "sshFS plugin for Docker",
209209
"documentation": "https://docs.docker.com/engine/extend/plugins/",
210-
"entrypoint": ["/go/bin/docker-volume-sshfs"],
210+
"entrypoint": ["/docker-volume-sshfs"],
211211
"network": {
212212
"type": "host"
213213
},
@@ -222,7 +222,7 @@ Consider the following `config.json` file.
222222
```
223223
224224
This plugin is a volume driver. It requires a `host` network and the
225-
`CAP_SYS_ADMIN` capability. It depends upon the `/go/bin/docker-volume-sshfs`
225+
`CAP_SYS_ADMIN` capability. It depends upon the `/docker-volume-sshfs`
226226
entrypoint and uses the `/run/docker/plugins/sshfs.sock` socket to communicate
227227
with Docker Engine. This plugin has no runtime parameters.
228228

0 commit comments

Comments
 (0)