ddgs / docker-compose.yml
motsobelal's picture
Upload 39 files
8628def verified
raw
history blame contribute delete
331 Bytes
services:
ddgs-api:
build: .
ports:
- "8000:8000"
environment:
- DDGS_PROXY
volumes:
- ./logs:/app/logs
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 60s