chore: frontend container listens on port 6501
This commit is contained in:
parent
a5006bff63
commit
47000beef4
1 changed files with 3 additions and 3 deletions
|
|
@ -49,15 +49,15 @@ services:
|
||||||
container_name: normogen-frontend
|
container_name: normogen-frontend
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
ports:
|
ports:
|
||||||
- "8080:8080"
|
- "6501:6501"
|
||||||
environment:
|
environment:
|
||||||
- BACKEND_URL=http://backend:6500
|
- BACKEND_URL=http://backend:6500
|
||||||
- FRONTEND_PORT=8080
|
- FRONTEND_PORT=6501
|
||||||
depends_on:
|
depends_on:
|
||||||
backend:
|
backend:
|
||||||
condition: service_healthy
|
condition: service_healthy
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "curl", "-sf", "http://localhost:8080/"]
|
test: ["CMD", "curl", "-sf", "http://localhost:6501/"]
|
||||||
interval: 30s
|
interval: 30s
|
||||||
timeout: 10s
|
timeout: 10s
|
||||||
retries: 3
|
retries: 3
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue