fix(infra): change mana-notify port to 3042 (3041 used by citycorners)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Till JS 2026-03-27 22:40:06 +01:00
parent 0bf5a90f12
commit 82de69476f

View file

@ -404,7 +404,7 @@ services:
postgres:
condition: service_healthy
environment:
PORT: 3041
PORT: 3042
DATABASE_URL: postgresql://postgres:${POSTGRES_PASSWORD:-mana123}@postgres:5432/mana?sslmode=disable
SERVICE_KEY: ${NOTIFY_SERVICE_KEY:-dev-service-key}
MANA_CORE_AUTH_URL: http://mana-core-auth:3001
@ -417,9 +417,9 @@ services:
MATRIX_HOMESERVER_URL: http://mana-matrix-synapse:8008
MATRIX_ACCESS_TOKEN: ${MATRIX_NOTIFY_BOT_TOKEN:-}
ports:
- "3041:3041"
- "3042:3042"
healthcheck:
test: ["CMD", "wget", "-q", "--spider", "http://localhost:3041/health"]
test: ["CMD", "wget", "-q", "--spider", "http://localhost:3042/health"]
interval: 120s
timeout: 5s
retries: 3
@ -923,7 +923,7 @@ services:
condition: service_healthy
environment:
NODE_ENV: production
PORT: 3041
PORT: 3042
DATABASE_URL: postgresql://postgres:${POSTGRES_PASSWORD:-mana123}@postgres:5432/citycorners
DB_HOST: postgres
DB_PORT: 5432
@ -933,9 +933,9 @@ services:
CORS_ORIGINS: https://citycorners.mana.how,https://mana.how
ADMIN_SERVICE_KEY: ${MANA_CORE_SERVICE_KEY}
ports:
- "3041:3041"
- "3042:3042"
healthcheck:
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1:3041/health"]
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1:3042/health"]
interval: 120s
timeout: 10s
retries: 3
@ -1491,7 +1491,7 @@ services:
context: .
dockerfile: apps/citycorners/apps/web/Dockerfile
args:
PUBLIC_BACKEND_URL: http://citycorners-backend:3041
PUBLIC_BACKEND_URL: http://citycorners-backend:3042
PUBLIC_MANA_CORE_AUTH_URL: http://mana-auth:3001
image: citycorners-web:local
container_name: mana-app-citycorners-web
@ -1502,7 +1502,7 @@ services:
environment:
NODE_ENV: production
PORT: 5022
PUBLIC_BACKEND_URL: http://citycorners-backend:3041
PUBLIC_BACKEND_URL: http://citycorners-backend:3042
PUBLIC_MANA_CORE_AUTH_URL: http://mana-auth:3001
PUBLIC_CITYCORNERS_API_URL_CLIENT: https://citycorners-api.mana.how
PUBLIC_MANA_CORE_AUTH_URL_CLIENT: https://auth.mana.how