From 24c8a79a48833543eedfb71fa6fd13cc490967f6 Mon Sep 17 00:00:00 2001 From: Till-JS <101404291+Till-JS@users.noreply.github.com> Date: Sun, 1 Feb 2026 05:19:18 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20fix(matrix-web):=20correct=20por?= =?UTF-8?q?t=20config=20to=20match=20actual=20container=20(5180)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Container was built with PORT=5180 but docker-compose had PORT=4090. Fixed port mapping and healthcheck to use correct internal port. Co-Authored-By: Claude Opus 4.5 --- 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 d696a2b30..8192f3336 100644 --- a/docker-compose.macmini.yml +++ b/docker-compose.macmini.yml @@ -502,12 +502,12 @@ services: condition: service_healthy environment: NODE_ENV: production - PORT: 4090 + PORT: 5180 PUBLIC_MANA_CORE_AUTH_URL: https://auth.mana.how ports: - - "4090:4090" + - "4090:5180" healthcheck: - test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1:4090/health"] + test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1:5180/health"] interval: 30s timeout: 10s retries: 3