fix(docker): point dev backend healthcheck at management port 8081
The observability work moved actuator to a separate management port (management.server.port: 8081), but the dev compose healthcheck still probed :8080/actuator/health, which 404s. The backend was reported unhealthy and the frontend (depends_on: backend healthy) never started. docker-compose.prod.yml already uses 8081; this aligns dev with it. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
@@ -201,7 +201,7 @@ services:
|
|||||||
networks:
|
networks:
|
||||||
- archiv-net
|
- archiv-net
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD-SHELL", "wget -qO- http://localhost:8080/actuator/health | grep -q UP || exit 1"]
|
test: ["CMD-SHELL", "wget -qO- http://localhost:8081/actuator/health | grep -q UP || exit 1"]
|
||||||
interval: 15s
|
interval: 15s
|
||||||
timeout: 5s
|
timeout: 5s
|
||||||
retries: 10
|
retries: 10
|
||||||
|
|||||||
Reference in New Issue
Block a user