Files
calorie_tracker_2/docker-compose.yml
Jp 39c16f5090 feat: add health check endpoint and Docker health monitoring
Add a /health endpoint to the application controller and configure Docker health checks.
This enables container orchestration systems to monitor the application's liveness and readiness.
2026-02-02 00:54:10 +08:00

18 lines
373 B
YAML

version: '3.8'
services:
web:
build: .
ports:
- "3000:3000"
volumes:
- ./data:/app/data
environment:
- PORT=3000
- NODE_ENV=production
healthcheck:
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:3000/health"]
interval: 30s
timeout: 3s
retries: 3
start_period: 5s