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,33 @@
{
"services": [
{
"name": "nginx-proxy-manager",
"image": "jc21/nginx-proxy-manager:2.13.5",
"isMain": true,
"internalPort": 81,
"addPorts": [
{
"hostPort": "${NPM_HTTP_PORT}",
"containerPort": 80
},
{
"hostPort": "${NPM_HTTPS_PORT}",
"containerPort": 443
}
],
"environment": {
"DISABLE_IPV6": "true"
},
"volumes": [
{
"hostPath": "${APP_DATA_DIR}/data",
"containerPath": "/data"
},
{
"hostPath": "${APP_DATA_DIR}/letsencrypt",
"containerPath": "/etc/letsencrypt"
}
]
}
]
}