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.
This commit is contained in:
Julien Calixte
2026-04-22 16:31:07 +02:00
parent d836f77cc4
commit 74bbea8eb0
2 changed files with 2 additions and 3 deletions

View File

@@ -1,2 +1 @@
DOCLING_SERVE_ENABLE_UI=true DOCLING_SERVE_ENABLE_UI=true
PORT=5001

View File

@@ -1,8 +1,8 @@
services: services:
docling: docling:
image: quay.io/docling-project/docling-serve:latest image: quay.io/docling-project/docling-serve:latest
ports: expose:
- "${PORT:-5001}:5001" - "5001"
environment: environment:
- DOCLING_SERVE_ENABLE_UI=${DOCLING_SERVE_ENABLE_UI:-true} - DOCLING_SERVE_ENABLE_UI=${DOCLING_SERVE_ENABLE_UI:-true}
healthcheck: healthcheck: