-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.json
84 lines (84 loc) · 2.08 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"Description": "Shared Filesystem Volume plugin for Docker",
"Documentation": "https://github.com/tibold/docker-volume-sharedfs",
"Interface": {
"Types": [
"docker.volumedriver/1.0"
],
"Socket": "sharedfs.sock"
},
"Entrypoint": [
"/docker-volume-sharedfs",
"--root=/volumes"
],
"Env": [
{
"Description": "Enable debug logging",
"Name": "SFS_DEBUG",
"Settable": [
"value"
],
"Value": "0"
},
{
"Description": "Set the lock keepalive interval in seconds",
"Name": "SFS_LOCK_INTERVAL",
"Settable": [
"value"
],
"Value": "20"
},
{
"Description": "Set the lock timeout in seconds",
"Name": "SFS_LOCK_TIMEOUT",
"Settable": [
"value"
],
"Value": "60"
},
{
"Description": "Set the cleanup interval in minutes",
"Name": "SFS_CLEANUP_INTERVAL",
"Settable": [
"value"
],
"Value": "60"
},
{
"Description": "Sets the default value for the 'protected' volume option",
"Name": "SFS_DEFAULT_PROTECTED",
"Settable": [
"value"
],
"Value": "0"
},
{
"Description": "Sets the default value for the 'exclusive' volume option",
"Name": "SFS_DEFAULT_EXCLUSIVE",
"Settable": [
"value"
],
"Value": "0"
}
],
"Mounts": [
{
"Name": "volumes",
"Destination": "/volumes",
"Options": [
"rbind"
],
"Source": "",
"Settable": [
"source"
],
"Type": "bind"
}
],
"PropagatedMount": "/volumes",
"Linux": {
"Capabilities": [
"CAP_SYS_ADMIN"
]
}
}