EatlyticApp / docker-compose.yml
Shaikhsarib's picture
Hardening: Improved OCR line reconstruction and robust nutrition filtering
1080825
raw
history blame contribute delete
441 Bytes
version: "3.8"
services:
app:
build: .
container_name: eatlytic
restart: unless-stopped
ports:
- "7860:7860"
volumes:
- ./data:/app/data
environment:
- GROQ_API_KEY=${GROQ_API_KEY}
- DUCKDUCKGO_TIMEOUT=10
- ENV=production
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:7860/health"]
interval: 30s
timeout: 5s
retries: 3
start_period: 60s