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

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

View File

@@ -5,64 +5,23 @@
"name": "rego-tunnel-linux", "name": "rego-tunnel-linux",
"image": "qemux/qemu:latest", "image": "qemux/qemu:latest",
"environment": [ "environment": [
{ {"key": "BOOT", "value": "${LINUX_DISTRO}"},
"key": "BOOT", {"key": "RAM_SIZE", "value": "${LINUX_RAM_GB}G"},
"value": "${LINUX_DISTRO}" {"key": "CPU_CORES", "value": "${LINUX_CPU_CORES}"},
}, {"key": "DISK_SIZE", "value": "${LINUX_DISK_SIZE_GB}G"}
{
"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, "internalPort": 8006,
"volumes": [ "volumes": [
{ {"hostPath": "${APP_DATA_DIR}/data/storage", "containerPath": "/storage", "readOnly": false, "shared": false, "private": false},
"hostPath": "${APP_DATA_DIR}/data/storage", {"hostPath": "${APP_DATA_DIR}/data/shared", "containerPath": "/shared", "readOnly": false, "shared": false, "private": false},
"containerPath": "/storage", {"hostPath": "/etc/runtipi/repos/runtipi/apps/rego-tunnel-linux/vpn_scripts", "containerPath": "/vpn_scripts", "readOnly": true, "shared": false, "private": false}
"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", "stopGracePeriod": "2m",
"sysctls": {}, "sysctls": {},
"devices": [ "devices": ["/dev/kvm", "/dev/net/tun"],
"/dev/kvm", "capAdd": ["NET_ADMIN"],
"/dev/net/tun"
],
"capAdd": [
"NET_ADMIN"
],
"isMain": true, "isMain": true,
"extraLabels": { "extraLabels": {"runtipi.managed": true}
"runtipi.managed": true
}
} }
] ]
} }