Spaces:
Paused
Paused
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 |