Hoghoghi / docker-compose.yml
Really-amin's picture
Upload 66 files
4e7b77b verified
raw
history blame
498 Bytes
version: '3.8'
services:
legal-dashboard:
build: .
ports:
- "7860:7860"
volumes:
- ./data:/app/data
- ./cache:/app/cache
environment:
- DATABASE_PATH=/app/data/legal_dashboard.db
- TRANSFORMERS_CACHE=/app/cache
- HF_HOME=/app/cache
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:7860/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s