From ad8d5c3bc06a2ed2efca2d5aa962725c6ee396cb Mon Sep 17 00:00:00 2001 From: Till-JS <101404291+Till-JS@users.noreply.github.com> Date: Fri, 13 Feb 2026 19:40:50 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20chore(zitare):=20change=20zitare?= =?UTF-8?q?-web=20port=20from=205012=20to=205018?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Port 5012 is used by calendar-web Co-Authored-By: Claude Opus 4.5 --- apps/zitare/apps/web/Dockerfile | 6 +++--- docker-compose.macmini.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/zitare/apps/web/Dockerfile b/apps/zitare/apps/web/Dockerfile index f48e0811e..1874c0982 100644 --- a/apps/zitare/apps/web/Dockerfile +++ b/apps/zitare/apps/web/Dockerfile @@ -88,16 +88,16 @@ COPY apps/zitare/apps/web/docker-entrypoint.sh /docker-entrypoint.sh RUN chmod +x /docker-entrypoint.sh # Expose port -EXPOSE 5012 +EXPOSE 5018 # Set environment variables ENV NODE_ENV=production -ENV PORT=5012 +ENV PORT=5018 ENV HOST=0.0.0.0 # Health check HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \ - CMD wget --no-verbose --tries=1 --spider http://localhost:5012/health || exit 1 + CMD wget --no-verbose --tries=1 --spider http://localhost:5018/health || exit 1 # Run the app ENTRYPOINT ["/docker-entrypoint.sh"] diff --git a/docker-compose.macmini.yml b/docker-compose.macmini.yml index 8f248019a..32bed3d9a 100644 --- a/docker-compose.macmini.yml +++ b/docker-compose.macmini.yml @@ -1077,15 +1077,15 @@ services: condition: service_healthy environment: NODE_ENV: production - PORT: 5012 + PORT: 5018 PUBLIC_ZITARE_API_URL: http://zitare-backend:3007 PUBLIC_MANA_CORE_AUTH_URL: http://mana-auth:3001 PUBLIC_ZITARE_API_URL_CLIENT: https://zitare-api.mana.how PUBLIC_MANA_CORE_AUTH_URL_CLIENT: https://auth.mana.how ports: - - "5012:5012" + - "5018:5018" healthcheck: - test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1:5012/health"] + test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1:5018/health"] interval: 30s timeout: 10s retries: 3