From 3589558b6c2f5506e95df4375c40603cab79bb34 Mon Sep 17 00:00:00 2001 From: Till JS Date: Fri, 27 Mar 2026 21:05:00 +0100 Subject: [PATCH] fix(gateway): change api-gateway port to 3030 (3010 used by mukke-backend) Co-Authored-By: Claude Opus 4.6 (1M context) --- docker-compose.macmini.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker-compose.macmini.yml b/docker-compose.macmini.yml index 0b451f103..7f3c90703 100644 --- a/docker-compose.macmini.yml +++ b/docker-compose.macmini.yml @@ -261,7 +261,7 @@ services: condition: service_healthy environment: TZ: Europe/Berlin - PORT: 3010 + PORT: 3030 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: - - "3010:3010" + - "3030:3030" healthcheck: - test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1:3010/health"] + test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1:3030/health"] interval: 60s timeout: 5s retries: 3