Files
Quote-Generator/docker-compose.yml
2025-12-31 07:07:52 +00:00

17 lines
348 B
YAML

version: '3.8'
services:
quotegen:
build: .
ports:
- "3000:3000"
environment:
- NODE_ENV=production
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://localhost:3000/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s