From 47000beef4f2c1ab450a56ea99199eecf25dd31b Mon Sep 17 00:00:00 2001 From: goose Date: Sun, 5 Jul 2026 13:04:04 -0300 Subject: [PATCH] chore: frontend container listens on port 6501 --- backend/docker-compose.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/docker-compose.yml b/backend/docker-compose.yml index 8b5e777..0bba637 100644 --- a/backend/docker-compose.yml +++ b/backend/docker-compose.yml @@ -49,15 +49,15 @@ services: container_name: normogen-frontend restart: unless-stopped ports: - - "8080:8080" + - "6501:6501" environment: - BACKEND_URL=http://backend:6500 - - FRONTEND_PORT=8080 + - FRONTEND_PORT=6501 depends_on: backend: condition: service_healthy healthcheck: - test: ["CMD", "curl", "-sf", "http://localhost:8080/"] + test: ["CMD", "curl", "-sf", "http://localhost:6501/"] interval: 30s timeout: 10s retries: 3