You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
docker-net-dhcp/config.json

41 lines
891 B
JSON

5 years ago
{
"description": "Docker host bridge DHCP networking",
"interface": {
"socket": "net-dhcp.sock",
"types": [
"docker.networkdriver/1.0"
5 years ago
]
},
"entrypoint": [ "/opt/plugin/launch.sh" ],
"workdir": "/opt/plugin",
"network": {
"type": "host"
},
"mounts": [
{
"source": "/var/run/docker.sock",
"destination": "/run/docker.sock",
"type": "bind",
"options": [
"bind"
]
}
],
"pidhost": true,
5 years ago
"linux": {
"capabilities": [
"CAP_NET_ADMIN",
"CAP_SYS_ADMIN"
5 years ago
]
},
"env": [
{
"name": "GUNICORN_OPTS",
"settable": [
"value"
],
"value": "--log-level DEBUG --log-file /var/log/net-dhcp.log"
}
]
}