Add healthchecks to admin-compliance, developer-portal, backend-compliance

Traefik may require healthchecks to route traffic to containers.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Sharang Parnerkar
2026-03-08 00:46:20 +01:00
parent 0c01f1c96c
commit 005fb9d219

View File

@@ -41,6 +41,12 @@ services:
depends_on: depends_on:
backend-compliance: backend-compliance:
condition: service_started condition: service_started
healthcheck:
test: ["CMD", "wget", "-q", "--spider", "http://127.0.0.1:3000/"]
interval: 30s
timeout: 10s
start_period: 30s
retries: 3
restart: unless-stopped restart: unless-stopped
networks: networks:
- breakpilot-network - breakpilot-network
@@ -54,6 +60,12 @@ services:
- "3000" - "3000"
environment: environment:
NODE_ENV: production NODE_ENV: production
healthcheck:
test: ["CMD", "wget", "-q", "--spider", "http://127.0.0.1:3000/"]
interval: 30s
timeout: 10s
start_period: 30s
retries: 3
restart: unless-stopped restart: unless-stopped
networks: networks:
- breakpilot-network - breakpilot-network
@@ -90,6 +102,12 @@ services:
SMTP_FROM_NAME: ${SMTP_FROM_NAME:-BreakPilot Compliance} SMTP_FROM_NAME: ${SMTP_FROM_NAME:-BreakPilot Compliance}
SMTP_FROM_ADDR: ${SMTP_FROM_ADDR:-compliance@breakpilot.ai} SMTP_FROM_ADDR: ${SMTP_FROM_ADDR:-compliance@breakpilot.ai}
RAG_SERVICE_URL: http://bp-core-rag-service:8097 RAG_SERVICE_URL: http://bp-core-rag-service:8097
healthcheck:
test: ["CMD", "curl", "-f", "http://127.0.0.1:8002/health"]
interval: 30s
timeout: 10s
start_period: 15s
retries: 3
restart: unless-stopped restart: unless-stopped
networks: networks:
- breakpilot-network - breakpilot-network