Files
runtipi/apps/rego-tunnel-linux/docker-compose.json
Alex Zaw e3a14dbaa7
Some checks failed
Test / test (push) Has been cancelled
upload current sources
2025-12-24 18:50:41 +00:00

24 lines
573 B
JSON
Executable File

{
"services": [
{
"name": "rego-tunnel-linux",
"image": "rego-vpn:latest",
"isMain": true,
"internalPort": 8806,
"privileged": true,
"capAdd": ["NET_ADMIN"],
"devices": ["/dev/net/tun:/dev/net/tun"],
"environment": {
"OC_URL": "${OC_URL}",
"OC_SERVERCERT": "${OC_SERVERCERT}",
"OC_USER": "${OC_USER}",
"VNC_PASSWORD": "${VNC_PASSWORD}",
"NOVNC_PORT": "8806"
},
"volumes": [
{ "hostPath": "${APP_DATA_DIR}/data", "containerPath": "/root" }
]
}
]
}