Files
docling/docker-compose.yml
2026-04-22 16:09:17 +02:00

14 lines
366 B
YAML

services:
docling:
image: quay.io/docling-project/docling-serve:latest
ports:
- "${PORT:-5001}:5001"
environment:
- DOCLING_SERVE_ENABLE_UI=${DOCLING_SERVE_ENABLE_UI:-true}
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:5001/health"]
interval: 30s
timeout: 10s
retries: 3
restart: unless-stopped