fix: remove resource limits and use host.docker.internal for dashboard
Run Tests / Backend Tests (push) Failing after 2m16s
Run Tests / Frontend Tests (push) Failing after 2m13s
Run Tests / Test Summary (push) Failing after 14s
Deploy Dashboard (Dev) / deploy-dev (push) Has been cancelled

- Remove CPU/memory limits that were causing issues
- Switch from docker-socket-proxy to host.docker.internal
- Add nas.jimmygan.com:8443 to WEBAUTHN_ORIGINS for proper auth
This commit is contained in:
Gan, Jimmy
2026-04-06 18:17:08 +08:00
parent 123157624c
commit 70a222c1b6
2 changed files with 3 additions and 13 deletions
+2 -7
View File
@@ -28,13 +28,8 @@ services:
restart: unless-stopped
ports:
- "127.0.0.1:4000:4000"
deploy:
resources:
limits:
cpus: '2.0'
memory: 2G
environment:
- DOCKER_HOST=tcp://docker-socket-proxy:2375
- DOCKER_HOST=tcp://host.docker.internal:2375
- GITEA_URL=http://gitea:3000
- GITEA_TOKEN=${GITEA_TOKEN}
- VOLUME_ROOT=/volume1
@@ -54,7 +49,7 @@ services:
- TELEGRAM_PROXY=${TELEGRAM_PROXY:-}
- CORS_ORIGINS=https://nas.jimmygan.com
- WEBAUTHN_RP_ID=jimmygan.com
- WEBAUTHN_ORIGINS=https://nas.jimmygan.com,https://auth.jimmygan.com:8443
- WEBAUTHN_ORIGINS=https://nas.jimmygan.com,https://nas.jimmygan.com:8443,https://auth.jimmygan.com:8443
- LITELLM_HEALTH_API_KEY=${LITELLM_HEALTH_API_KEY:-}
- LITELLM_URL=http://litellm:4005
- GITEA_DB_PASSWORD=${GITEA_DB_PASSWORD}