Files
docker-bridge-overlay/config.json
Roman Vaníček 0e66673926
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
Remove env variable.
2023-02-17 00:54:53 +01:00

32 lines
746 B
JSON

{
"description": "Docker bridge as overlay networking driver",
"interface": {
"socket": "bridge-overlay.sock",
"types": [
"docker.networkdriver/1.0"
]
},
"entrypoint": ["/usr/sbin/bridge-overlay", "-logfile", "/var/log/bridge-overlay.log"],
"env": [
{
"description": "Log level",
"name": "LOG_LEVEL",
"value": "info",
"settable": [
"value"
]
}
],
"workdir": "/",
"mounts": [
{
"source": "/var/run/docker.sock",
"destination": "/run/docker.sock",
"type": "bind",
"options": [
"bind"
]
}
]
}