Files
docling/docker-compose.yml
Julien Calixte 74bbea8eb0 chore(compose): delegate port routing to Coolify reverse proxy
Replace host port binding with expose so Coolify's Traefik handles
external routing. Remove PORT env var as it is no longer needed.
2026-04-22 16:31:07 +02:00

14 lines
353 B
YAML

services:
docling:
image: quay.io/docling-project/docling-serve:latest
expose:
- "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