mirror of
https://github.com/kossakovsky/n8n-install.git
synced 2026-03-07 22:33:11 +00:00
Add PaddleOCR service configuration
- Added PaddleOCR hostname to .env.example for environment variable setup. - Updated Caddyfile to include reverse proxy configuration for PaddleOCR. - Modified docker-compose.yml to define PaddleOCR service with necessary commands and health checks. - Enhanced service selection wizard to include PaddleOCR in the options. - Updated final report script to display PaddleOCR service details if active.
This commit is contained in:
@@ -64,6 +64,7 @@ base_services_data=(
|
||||
"neo4j" "Neo4j (Graph Database)"
|
||||
"letta" "Letta (Agent Server & SDK)"
|
||||
"gotenberg" "Gotenberg (Document Conversion API)"
|
||||
"paddleocr" "PaddleOCR (OCR API Server)"
|
||||
"crawl4ai" "Crawl4ai (Web Crawler for AI)"
|
||||
"ragapp" "RAGApp (Open-source RAG UI + API)"
|
||||
"open-webui" "Open WebUI (ChatGPT-like Interface)"
|
||||
@@ -105,7 +106,7 @@ done
|
||||
|
||||
# Use whiptail to display the checklist
|
||||
CHOICES=$(whiptail --title "Service Selection Wizard" --checklist \
|
||||
"Choose the services you want to deploy.\nUse ARROW KEYS to navigate, SPACEBAR to select/deselect, ENTER to confirm." 32 90 21 \
|
||||
"Choose the services you want to deploy.\nUse ARROW KEYS to navigate, SPACEBAR to select/deselect, ENTER to confirm." 32 90 22 \
|
||||
"${services[@]}" \
|
||||
3>&1 1>&2 2>&3)
|
||||
|
||||
|
||||
@@ -195,6 +195,15 @@ if is_profile_active "gotenberg"; then
|
||||
echo " Office to PDF: POST /forms/libreoffice/convert"
|
||||
fi
|
||||
|
||||
if is_profile_active "paddleocr"; then
|
||||
echo
|
||||
echo "================================= PaddleOCR ==========================="
|
||||
echo
|
||||
echo "Host: ${PADDLEOCR_HOSTNAME:-<hostname_not_set>}"
|
||||
echo "Internal Access (HTTP): http://paddleocr:8080"
|
||||
echo "Notes: PaddleX Basic Serving (CPU), pipeline=OCR"
|
||||
fi
|
||||
|
||||
if is_profile_active "python-runner"; then
|
||||
echo
|
||||
echo "================================= Python Runner ========================"
|
||||
|
||||
Reference in New Issue
Block a user