Update to latest example-appstore structure with custom apps
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
37
apps/rego-tunnel/docker-compose.json
Executable file
37
apps/rego-tunnel/docker-compose.json
Executable file
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user