Hoghoghi / docker-compose.yml
Really-amin's picture
Upload 58 files
84fb503 verified
raw
history blame
421 Bytes
version: "3.9"
services:
legal_dashboard:
build: .
ports:
- "7860:7860"
volumes:
- ./data:/app/data
- ./logs:/app/logs
environment:
- PYTHONPATH=/app
- PORT=7860
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:7860/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s