Some checks failed
Test / test (push) Has been cancelled
- Add AnyConnect 4.8 installer to build folder - Update docker-compose to use rego-vpn:latest local image 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
53 lines
1.2 KiB
JSON
Executable File
53 lines
1.2 KiB
JSON
Executable File
{
|
|
"schemaVersion": 2,
|
|
"services": [
|
|
{
|
|
"name": "rego-tunnel",
|
|
"image": "rego-vpn:latest",
|
|
"environment": {
|
|
"RAM_SIZE": "${WINDOWS_RAM_GB}G",
|
|
"CPU_CORE": "${WINDOWS_CPU_CORES}",
|
|
"DISK_SIZE": "${WINDOWS_DISK_SIZE_GB}G",
|
|
"VERSION": "${WINDOWS_VERSION}"
|
|
},
|
|
"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": "${APP_DATA_DIR}/data/start.sh",
|
|
"containerPath": "/run/start.sh",
|
|
"readOnly": false,
|
|
"shared": false,
|
|
"private": false
|
|
}
|
|
],
|
|
"stopGracePeriod": "2m",
|
|
"sysctls": {},
|
|
"devices": [
|
|
"/dev/kvm",
|
|
"/dev/net/tun"
|
|
],
|
|
"capAdd": [
|
|
"NET_ADMIN"
|
|
],
|
|
"isMain": true,
|
|
"extraLabels": {
|
|
"runtipi.managed": true
|
|
}
|
|
}
|
|
]
|
|
}
|