-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
39 lines (39 loc) · 928 Bytes
/
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
{
"description": "Manage volumes by formatting partitions",
"documentation": "https://gitlab.com/go-benchmark-kvstore/docker-volume-mkfs",
"interface": {
"socket": "mkfs.sock",
"types": ["docker.volumedriver/1.0"]
},
"entrypoint": ["/docker-volume-mkfs"],
"network": {
"type": "none"
},
"mounts": [
{
"source": "/dev",
"destination": "/dev",
"type": "bind",
"options": ["rbind"]
}
],
"propagatedmount": "/mnt",
"env": [
{
"name": "LOGGING_MAIN_LEVEL",
"description": "Log entries at the level or higher. Possible: trace,debug,info,warn,error,disabled.",
"value": "info",
"settable": ["value"]
}
],
"args": {
"name": "args",
"description": "CLI arguments, e.g., partition(s) to use.",
"value": [],
"settable": ["value"]
},
"linux": {
"capabilities": ["CAP_SYS_ADMIN"],
"allowAllDevices": true
}
}