From 0bf5a90f12f0d9418363e3fc0b771667e42b2967 Mon Sep 17 00:00:00 2001 From: Till JS Date: Fri, 27 Mar 2026 22:39:36 +0100 Subject: [PATCH] fix(infra): change mana-notify port to 3041 (3040 used by picture-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 6c79b6f1e..bdff273d8 100644 --- a/docker-compose.macmini.yml +++ b/docker-compose.macmini.yml @@ -404,7 +404,7 @@ services: postgres: condition: service_healthy environment: - PORT: 3040 + PORT: 3041 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: - - "3040:3040" + - "3041:3041" healthcheck: - test: ["CMD", "wget", "-q", "--spider", "http://localhost:3040/health"] + test: ["CMD", "wget", "-q", "--spider", "http://localhost:3041/health"] interval: 120s timeout: 5s retries: 3