mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2025-11-16 01:21:16 +01:00
# Description of Changes <!-- Please provide a summary of the changes, including: - What was changed - Why the change was made - Any challenges encountered Closes #(issue_number) --> --- ## Checklist ### General - [ ] I have read the [Contribution Guidelines](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/CONTRIBUTING.md) - [ ] I have read the [Stirling-PDF Developer Guide](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/devGuide/DeveloperGuide.md) (if applicable) - [ ] I have read the [How to add new languages to Stirling-PDF](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/devGuide/HowToAddNewLanguage.md) (if applicable) - [ ] I have performed a self-review of my own code - [ ] My changes generate no new warnings ### Documentation - [ ] I have updated relevant docs on [Stirling-PDF's doc repo](https://github.com/Stirling-Tools/Stirling-Tools.github.io/blob/main/docs/) (if functionality has heavily changed) - [ ] I have read the section [Add New Translation Tags](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/devGuide/HowToAddNewLanguage.md#add-new-translation-tags) (for new translation tags only) ### UI Changes (if applicable) - [ ] Screenshots or videos demonstrating the UI changes are attached (e.g., as comments or direct attachments in the PR) ### Testing (if applicable) - [ ] I have tested my changes locally. Refer to the [Testing Guide](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/devGuide/DeveloperGuide.md#6-testing) for more details. Co-authored-by: ConnorYoh <40631091+ConnorYoh@users.noreply.github.com>
60 lines
1.6 KiB
YAML
60 lines
1.6 KiB
YAML
# Example Docker Compose for Unified Stirling-PDF Container
|
|
# MODE=BOTH (default): Frontend + Backend in single container on port 8080
|
|
|
|
services:
|
|
stirling-pdf-unified:
|
|
container_name: Stirling-PDF-Unified-Both
|
|
build:
|
|
context: ../..
|
|
dockerfile: docker/Dockerfile.unified
|
|
ports:
|
|
- "8080:8080"
|
|
volumes:
|
|
- ./stirling/data:/usr/share/tessdata:rw
|
|
- ./stirling/config:/configs:rw
|
|
- ./stirling/logs:/logs:rw
|
|
- ./stirling/customFiles:/customFiles:rw
|
|
- ./stirling/pipeline:/pipeline:rw
|
|
environment:
|
|
# MODE parameter: BOTH (default), FRONTEND, or BACKEND
|
|
MODE: BOTH
|
|
|
|
# Backend runs internally on this port when MODE=BOTH
|
|
BACKEND_INTERNAL_PORT: 8081
|
|
|
|
# Standard Stirling-PDF configuration
|
|
DISABLE_ADDITIONAL_FEATURES: "false"
|
|
DOCKER_ENABLE_SECURITY: "false"
|
|
PUID: 1000
|
|
PGID: 1000
|
|
UMASK: "022"
|
|
|
|
# Application settings
|
|
SYSTEM_DEFAULTLOCALE: en-US
|
|
UI_APPNAME: Stirling-PDF
|
|
UI_HOMEDESCRIPTION: Your locally hosted one-stop-shop for all your PDF needs
|
|
SYSTEM_MAXFILESIZE: "100"
|
|
METRICS_ENABLED: "true"
|
|
|
|
# Optional: Add OCR languages (comma-separated)
|
|
# TESSERACT_LANGS: "deu,fra,spa"
|
|
|
|
# Optional: Java memory settings
|
|
# JAVA_CUSTOM_OPTS: "-Xmx4g"
|
|
|
|
restart: unless-stopped
|
|
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "curl -f http://localhost:8080/api/v1/info/status || exit 1"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 40s
|
|
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
memory: 4G
|
|
reservations:
|
|
memory: 2G
|