forked from linode/docker-volume-linode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
34 lines (34 loc) · 1 KB
/
config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"description": "Linode Volume plugin for Docker",
"documentation": "https://docs.docker.com/engine/extend/plugins/",
"entrypoint": [ "/docker-volume-linode" ],
"env": [
{ "name": "linode-token", "settable": [ "value" ], "value": "" },
{ "name": "linode-label", "settable": [ "value" ], "value": "" },
{ "name": "force-attach", "settable": [ "value" ], "value": "false" },
{ "name": "socket-user", "settable": [ "value" ], "value": "root" },
{ "name": "mount-root", "settable": [ "value" ], "value": "/mnt" },
{ "name": "log-level", "settable": [ "value" ], "value": "info" }
],
"interface": {
"socket": "linode.sock",
"types": [ "docker.volumedriver/1.1" ]
},
"linux": {
"allowAllDevices": true,
"capabilities": [ "CAP_SYS_ADMIN" ]
},
"PropagatedMount": "/mnt",
"mounts": [
{
"name": "/dev",
"destination": "/dev",
"options": [ "rbind" ],
"source": "/dev",
"type": "bind"
}
],
"network": {
"type": "host"
}
}