mirror of
https://github.com/Dokploy/templates.git
synced 2026-04-29 20:37:57 -05:00
* feat: add docling-serve template for document processing * updated for the build issues
22 lines
489 B
YAML
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: {}
|