mirror of
https://github.com/Dokploy/templates.git
synced 2026-03-12 01:56:43 -05:00
Feat: Add Docling-Serve Template for Document Processing -#464 (#465)
* feat: add docling-serve template for document processing * updated for the build issues
This commit is contained in:
committed by
GitHub
parent
469cfbb124
commit
cb04094d45
21
blueprints/docling-serve/docker-compose.yml
Normal file
21
blueprints/docling-serve/docker-compose.yml
Normal file
@@ -0,0 +1,21 @@
|
||||
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: {}
|
||||
BIN
blueprints/docling-serve/docling-serve.png
Normal file
BIN
blueprints/docling-serve/docling-serve.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 504 KiB |
15
blueprints/docling-serve/template.toml
Normal file
15
blueprints/docling-serve/template.toml
Normal file
@@ -0,0 +1,15 @@
|
||||
[variables]
|
||||
main_domain = "${domain}"
|
||||
|
||||
[config]
|
||||
[[config.domains]]
|
||||
serviceName = "docling-serve"
|
||||
port = 5001
|
||||
host = "${main_domain}"
|
||||
|
||||
[config.env]
|
||||
DOCLING_SERVE_ENABLE_UI = "1"
|
||||
DOCLING_SERVE_HOST = "0.0.0.0"
|
||||
DOCLING_SERVE_PORT = "5001"
|
||||
|
||||
[[config.mounts]]
|
||||
21
meta.json
21
meta.json
@@ -1653,6 +1653,27 @@
|
||||
"discussion"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "docling-serve",
|
||||
"name": "Docling Serve",
|
||||
"version": "latest",
|
||||
"description": "Running Docling as an API service for document processing and conversion with AI-powered capabilities.",
|
||||
"logo": "docling-serve.png",
|
||||
"links": {
|
||||
"github": "https://github.com/docling-project/docling-serve",
|
||||
"website": "https://docling-project.github.io/docling-serve/",
|
||||
"docs": "https://docling-project.github.io/docling-serve/",
|
||||
"dockerhub": "https://quay.io/repository/docling-project/docling-serve"
|
||||
},
|
||||
"tags": [
|
||||
"document-processing",
|
||||
"api",
|
||||
"ai",
|
||||
"conversion",
|
||||
"pdf",
|
||||
"office"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "docmost",
|
||||
"name": "Docmost",
|
||||
|
||||
Reference in New Issue
Block a user