forked from beornf/linstor-docker-volume
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
63 lines (63 loc) · 1.23 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"description": "Linstor volume plugin for Docker",
"documentation": "https://docs.docker.com/engine/extend/plugins/",
"entrypoint": ["/linstor-docker-volume"],
"env": [
{
"name": "LS_CONTROLLERS",
"settable": ["value"],
"value": ""
},
{
"name": "LS_USERNAME",
"settable": ["value"],
"value": ""
},
{
"name": "LS_PASSWORD",
"settable": ["value"],
"value": ""
},
{
"name": "LS_CERT_FILE",
"settable": ["value"],
"value": ""
},
{
"name": "LS_KEY_FILE",
"settable": ["value"],
"value": ""
},
{
"name": "LS_CA_FILE",
"settable": ["value"],
"value": ""
}
],
"interface": {
"socket": "linstor.sock",
"types": ["docker.volumedriver/1.0"]
},
"linux": {
"allowAllDevices": true,
"capabilities": ["CAP_SYS_ADMIN"]
},
"mounts": [
{
"destination": "/dev",
"options": ["rbind"],
"source": "/dev",
"type": "bind"
},
{
"destination": "/etc/linstor",
"options": ["rbind"],
"source": "/etc/linstor",
"type": "bind"
}
],
"network": {
"type": "host"
},
"propagatedMount": "/var/lib/docker-volumes/linstor"
}