beat-harvester/docker-compose.yaml
2025-06-07 16:14:00 +02:00

21 lines
No EOL
495 B
YAML

version: '3.8'
services:
beat-harvester:
build: .
container_name: beat-harvester
ports:
- "3000:3000"
environment:
- PORT=3000
- OUTPUT_PATH=/app/downloads
volumes:
- ./downloads:/app/downloads
- ./temp:/app/temp
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:3000/api/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s