chore: initial Coolify deployment config

This commit is contained in:
Julien Calixte
2026-04-22 16:09:17 +02:00
commit d836f77cc4
3 changed files with 16 additions and 0 deletions

2
.env.example Normal file
View File

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

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
.env

13
docker-compose.yml Normal file
View File

@@ -0,0 +1,13 @@
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