Files
templates/blueprints/docling-serve/docker-compose.yml
Harikrishnan Dhanasekaran cb04094d45 Feat: Add Docling-Serve Template for Document Processing -#464 (#465)
* feat: add docling-serve template for document processing

* updated for the build issues
2025-10-25 17:29:13 -06:00

22 lines
489 B
YAML

services:
docling-serve:
image: quay.io/docling-project/docling-serve:latest
restart: unless-stopped
ports:
- 5001
environment:
- DOCLING_SERVE_ENABLE_UI=1
- DOCLING_SERVE_HOST=0.0.0.0
- DOCLING_SERVE_PORT=5001
volumes:
- docling-data:/app/data
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:5001/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s
volumes:
docling-data: {}