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:
2025-12-18 09:00:15 +00:00
commit 6a5ccd5c02
135 changed files with 23096 additions and 0 deletions

View 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"
]
}
]
}