Files
runtipi/apps/rego-tunnel/docker-compose.json
alexz a3005f8538 Add schemaVersion 2 to all docker-compose.json files
🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-18 09:14:52 +00:00

39 lines
859 B
JSON
Executable File

{
"schemaVersion": 2,
"services": [
{
"name": "rego-tunnel",
"image": "rego-windows:latest",
"isMain": true,
"internalPort": 8006,
"environment": {
"RAM_SIZE": "${WINDOWS_RAM_GB}G",
"CPU_CORE": "${WINDOWS_CPU_CORES}",
"DISK_SIZE": "${WINDOWS_DISK_SIZE_GB}G"
},
"volumes": [
{
"hostPath": "${APP_DATA_DIR}/data/storage",
"containerPath": "/storage"
},
{
"hostPath": "${APP_DATA_DIR}/data/shared",
"containerPath": "/shared"
},
{
"hostPath": "${APP_DATA_DIR}/data/start.sh",
"containerPath": "/run/start.sh"
}
],
"stopGracePeriod": "2m",
"devices": [
"/dev/kvm",
"/dev/net/tun"
],
"capAdd": [
"NET_ADMIN"
]
}
]
}