Files
runtipi/apps/cistech-tunnel/docker-compose.json
alexz f168388d42
Some checks failed
Test / test (push) Has been cancelled
upload current sources
2025-12-14 09:52:05 +00:00

25 lines
712 B
JSON

{
"$schema": "https://schemas.runtipi.io/v2/dynamic-compose.json",
"schemaVersion": 2,
"services": [
{
"name": "cistech-tunnel",
"image": "cistech-vpn:latest",
"isMain": true,
"internalPort": 6901,
"privileged": true,
"capAdd": ["NET_ADMIN"],
"devices": ["/dev/net/tun:/dev/net/tun"],
"environment": [
{ "key": "OC_URL", "value": "${OC_URL}" },
{ "key": "OC_SERVERCERT", "value": "${OC_SERVERCERT}" },
{ "key": "OC_USER", "value": "${OC_USER}" },
{ "key": "VNC_PASSWORD", "value": "${VNC_PASSWORD}" }
],
"volumes": [
{ "hostPath": "${APP_DATA_DIR}/data", "containerPath": "/root" }
]
}
]
}