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

This commit is contained in:
2025-12-24 07:24:07 +00:00
parent 0086594368
commit 3465a489f2

View File

@@ -1,28 +1,68 @@
{ {
"schemaVersion": 2,
"services": [ "services": [
{ {
"name": "rego-tunnel-linux", "name": "rego-tunnel-linux",
"image": "qemux/qemu:latest", "image": "qemux/qemu:latest",
"isMain": true,
"internalPort": 8006,
"environment": [ "environment": [
{"key": "BOOT", "value": "${LINUX_DISTRO}"}, {
{"key": "RAM_SIZE", "value": "${LINUX_RAM_GB}G"}, "key": "BOOT",
{"key": "CPU_CORES", "value": "${LINUX_CPU_CORES}"}, "value": "${LINUX_DISTRO}"
{"key": "DISK_SIZE", "value": "${LINUX_DISK_SIZE_GB}G"}, },
{"key": "DHCP", "value": "Y"} {
"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": [ "volumes": [
{"hostPath": "${APP_DATA_DIR}/data/storage", "containerPath": "/storage"}, {
{"hostPath": "${APP_DATA_DIR}/data/shared", "containerPath": "/shared"}, "hostPath": "${APP_DATA_DIR}/data/storage",
{"hostPath": "/etc/runtipi/repos/runtipi/apps/rego-tunnel-linux/vpn_scripts", "containerPath": "/vpn_scripts"} "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
}
], ],
"sysctls": {"net.ipv4.ip_forward": 1}, "stopGracePeriod": "2m",
"devices": ["/dev/kvm", "/dev/net/tun"], "sysctls": {},
"capAdd": ["NET_ADMIN"], "devices": [
"stopGracePeriod": "2m" "/dev/kvm",
"/dev/net/tun"
],
"capAdd": [
"NET_ADMIN"
],
"isMain": true,
"extraLabels": {
"runtipi.managed": true
}
} }
], ]
"schemaVersion": 2,
"$schema": "https://schemas.runtipi.io/v2/dynamic-compose.json"
} }