fix(gateway): use port 3060 (3010 = mukke, 3030 = chat)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Till JS 2026-03-27 21:07:55 +01:00
parent 3589558b6c
commit 7d1842e31f

View file

@ -261,7 +261,7 @@ services:
condition: service_healthy
environment:
TZ: Europe/Berlin
PORT: 3030
PORT: 3060
DATABASE_URL: postgresql://postgres:${POSTGRES_PASSWORD:-mana123}@postgres:5432/manacore
REDIS_HOST: redis
REDIS_PORT: 6379
@ -273,9 +273,9 @@ services:
CORS_ORIGINS: https://api.mana.how,https://mana.how
ADMIN_USER_IDS: ${ADMIN_USER_IDS:-}
ports:
- "3030:3030"
- "3060:3060"
healthcheck:
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1:3030/health"]
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1:3060/health"]
interval: 60s
timeout: 5s
retries: 3