chore: frontend container listens on port 6501
Some checks failed
Lint and Build / format (push) Successful in 36s
Lint and Build / clippy (push) Successful in 1m45s
Lint and Build / build (push) Successful in 3m47s
Lint and Build / test (push) Failing after 2m53s

This commit is contained in:
goose 2026-07-05 13:04:04 -03:00
parent a5006bff63
commit 47000beef4

View file

@ -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