update plugin example

Signed-off-by: Victor Vieux <victorvieux@gmail.com>

cleanup whitespace formatting

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Victor Vieux 2016-11-23 15:22:02 -08:00 committed by Tibor Vass
parent 9fa1e6637b
commit b82e761088
1 changed files with 44 additions and 47 deletions

View File

@ -169,19 +169,18 @@ Config provides the base accessible fields for working with V0 plugin format
*Example showing the 'tiborvass/no-remove' plugin config.*
```
```json
{
"description": "A test plugin for Docker",
"documentation": "https://docs.docker.com/engine/extend/plugins/",
"entrypoint": ["plugin-no-remove", "/data"],
"interface" : {
"interface": {
"types": ["docker.volumedriver/1.0"],
"socket": "plugins.sock"
},
"network": {
"type": "host"
},
"mounts": [
{
"source": "/data",
@ -194,13 +193,11 @@ Config provides the base accessible fields for working with V0 plugin format
"type": "tmpfs"
}
],
"args": {
"name": "args",
"description": "command line arguments",
"value": []
},
"env": [
{
"name": "DEBUG",
@ -208,7 +205,7 @@ Config provides the base accessible fields for working with V0 plugin format
"value": "1"
}
],
"linux": {
"devices": [
{
"name": "device",
@ -216,6 +213,6 @@ Config provides the base accessible fields for working with V0 plugin format
"path": "/dev/cpu_dma_latency"
}
]
}
}
```