From 43131986a94a618899d8f4c0a622501c31ad486c Mon Sep 17 00:00:00 2001 From: Till JS Date: Mon, 23 Mar 2026 13:51:51 +0100 Subject: [PATCH] fix(landing-builder): change prod port to 3050 (3030 used by chat) 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 779232a3b..2b9d09e0c 100644 --- a/docker-compose.macmini.yml +++ b/docker-compose.macmini.yml @@ -311,15 +311,15 @@ services: condition: service_healthy environment: NODE_ENV: production - PORT: 3030 + PORT: 3050 MANA_CORE_AUTH_URL: http://mana-auth:3001 CLOUDFLARE_API_TOKEN: ${CLOUDFLARE_API_TOKEN:-} CLOUDFLARE_ACCOUNT_ID: ${CLOUDFLARE_ACCOUNT_ID:-} ORG_LANDING_DOMAIN: mana.how ports: - - "3030:3030" + - "3050:3050" healthcheck: - test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1:3030/api/v1/health"] + test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1:3050/api/v1/health"] interval: 30s timeout: 10s retries: 3