Skip to content

Commit 0bc84fc

Browse files
authoredMar 20, 2017
Merge pull request moby#31596 from rootsongjc/dry-run-test
Wrong entrypoint in docker plugin example
2 parents 1ec77ba + 7038931 commit 0bc84fc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎docs/extend/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ Consider the following `config.json` file.
150150
{
151151
"description": "sshFS plugin for Docker",
152152
"documentation": "https://docs.docker.com/engine/extend/plugins/",
153-
"entrypoint": ["/go/bin/docker-volume-sshfs"],
153+
"entrypoint": ["/docker-volume-sshfs"],
154154
"network": {
155155
"type": "host"
156156
},
@@ -165,7 +165,7 @@ Consider the following `config.json` file.
165165
```
166166
167167
This plugin is a volume driver. It requires a `host` network and the
168-
`CAP_SYS_ADMIN` capability. It depends upon the `/go/bin/docker-volume-sshfs`
168+
`CAP_SYS_ADMIN` capability. It depends upon the `/docker-volume-sshfs`
169169
entrypoint and uses the `/run/docker/plugins/sshfs.sock` socket to communicate
170170
with Docker Engine. This plugin has no runtime parameters.
171171

0 commit comments

Comments
 (0)
Please sign in to comment.