Some checks failed
Test / test (push) Has been cancelled
- Use object format for environment instead of array - Update image to rego-windows:latest - Remove deprecated KEY and VERSION 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
38 lines
837 B
JSON
Executable File
38 lines
837 B
JSON
Executable File
{
|
|
"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"
|
|
]
|
|
}
|
|
]
|
|
}
|