-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathconfig.json
More file actions
36 lines (36 loc) · 855 Bytes
/
config.json
File metadata and controls
36 lines (36 loc) · 855 Bytes
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
{
"Description": "A cifs plugin for Docker",
"Entrypoint" : [
"sh", "/docker-entrypoint.sh"
],
"Interface": {
"Socket": "netshare.sock",
"Types": [
"docker.volumedriver/1.0"
]
},
"PropagatedMount": "/var/lib/docker-volumes/netshare",
"Env": [
{
"Name":"SHARE_CMD",
"Description": "one of ceph nfs cifs efs",
"Value": "cifs",
"Settable": [
"value"
]
},
{
"Name":"NETSHARE_SOCKET_NAME",
"Description": "socket filename for Interface socket",
"Value": "netshare"
}
],
"Linux": {
"Capabilities": ["CAP_SYS_ADMIN"],
"AllowAllDevices": true,
"Devices": null
},
"network": {
"type": "host"
}
}