upload current sources
Some checks failed
Test / test (push) Has been cancelled

This commit is contained in:
2025-12-14 09:52:05 +00:00
parent b6151d36b2
commit f168388d42
2 changed files with 75 additions and 23 deletions

View File

@@ -0,0 +1,24 @@
{
"$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" }
]
}
]
}