Files
device-mapping-manager/config.json
Nadeem Douba 752fc9b8ba Added support for v1 and v2 cgroups
No longer using a plugin to deploy solution
2023-07-03 09:58:18 -04:00

83 lines
1.4 KiB
JSON

{
"Args": {
"Description": "",
"Name": "",
"Settable": null,
"Value": null
},
"Description": "A device mapping plugin for swarm clusters",
"Documentation": "https://docs.docker.com/engine/extend/plugins/",
"Entrypoint": [
"/dvd"
],
"Env": [
{
"Description": "",
"Name": "DEBUG",
"Settable": [
"value"
],
"Value": "0"
}
],
"Interface": {
"Socket": "dvd.sock",
"Types": [
"docker.volumedriver/1.0"
]
},
"Linux": {
"Capabilities": [
"CAP_BPF",
"CAP_SYS_PTRACE",
"CAP_SYS_ADMIN"
],
"AllowAllDevices": true,
"Devices": null
},
"Mounts": [
{
"destination": "/dev",
"source": "/dev",
"options": [
"rbind",
"rw"
],
"type": "bind"
},
{
"destination": "/host/sys",
"source": "/sys",
"options": [
"rbind",
"rw"
],
"type": "bind"
},
{
"destination": "/host/proc",
"source": "/proc",
"options": [
"rbind",
"rw"
],
"type": "bind"
},
{
"destination": "/var/run/docker.sock",
"source": "/var/run/docker.sock",
"options": [
"bind",
"ro",
"private"
],
"type": "bind"
}
],
"Network": {
"Type": ""
},
"PropagatedMount": null,
"User": {},
"Workdir": "/"
}