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

69 lines
1.5 KiB
JSON

{
"schemaVersion": 2,
"services": [
{
"name": "rego-tunnel-linux",
"image": "qemux/qemu:latest",
"environment": [
{
"key": "BOOT",
"value": "${LINUX_DISTRO}"
},
{
"key": "RAM_SIZE",
"value": "${LINUX_RAM_GB}G"
},
{
"key": "CPU_CORES",
"value": "${LINUX_CPU_CORES}"
},
{
"key": "DISK_SIZE",
"value": "${LINUX_DISK_SIZE_GB}G"
},
{
"key": "DHCP",
"value": "Y"
}
],
"internalPort": 8006,
"volumes": [
{
"hostPath": "${APP_DATA_DIR}/data/storage",
"containerPath": "/storage",
"readOnly": false,
"shared": false,
"private": false
},
{
"hostPath": "${APP_DATA_DIR}/data/shared",
"containerPath": "/shared",
"readOnly": false,
"shared": false,
"private": false
},
{
"hostPath": "/etc/runtipi/repos/runtipi/apps/rego-tunnel-linux/vpn_scripts",
"containerPath": "/vpn_scripts",
"readOnly": true,
"shared": false,
"private": false
}
],
"stopGracePeriod": "2m",
"sysctls": {},
"devices": [
"/dev/kvm",
"/dev/net/tun"
],
"capAdd": [
"NET_ADMIN"
],
"isMain": true,
"extraLabels": {
"runtipi.managed": true
}
}
]
}