mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2025-11-16 01:21:16 +01:00
67 lines
2.0 KiB
YAML
67 lines
2.0 KiB
YAML
services:
|
|
backend:
|
|
build:
|
|
context: ../..
|
|
dockerfile: docker/backend/Dockerfile
|
|
container_name: stirling-pdf-backend
|
|
restart: on-failure:5
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "curl -f http://localhost:8080/api/v1/info/status | grep -q 'UP'"]
|
|
interval: 5s
|
|
timeout: 10s
|
|
retries: 16
|
|
ports:
|
|
- "8080:8080" # TODO: Remove in production - for debugging only
|
|
expose:
|
|
- "8080"
|
|
volumes:
|
|
- ../../stirling/latest/data:/usr/share/tessdata:rw
|
|
- ../../stirling/latest/config:/configs:rw
|
|
- ../../stirling/latest/logs:/logs:rw
|
|
environment:
|
|
DISABLE_ADDITIONAL_FEATURES: "true"
|
|
SECURITY_ENABLELOGIN: "false"
|
|
SYSTEM_DEFAULTLOCALE: en-US
|
|
UI_APPNAME: Stirling-PDF
|
|
UI_HOMEDESCRIPTION: Demo site for Stirling-PDF Latest
|
|
UI_APPNAMENAVBAR: Stirling-PDF Latest
|
|
SYSTEM_MAXFILESIZE: "100"
|
|
METRICS_ENABLED: "true"
|
|
SYSTEM_GOOGLEVISIBILITY: "true"
|
|
SHOW_SURVEY: "true"
|
|
STIRLING_PDF_JSON_FONT_NORMALIZATION_ENABLED: "false"
|
|
STIRLING_PDF_JSON_CFF_CONVERTER_ENABLED: "true"
|
|
STIRLING_PDF_JSON_CFF_CONVERTER_METHOD: python
|
|
STIRLING_PDF_JSON_CFF_CONVERTER_PYTHON_COMMAND: /opt/venv/bin/python3
|
|
STIRLING_PDF_JSON_CFF_CONVERTER_PYTHON_SCRIPT: /scripts/convert_cff_to_ttf.py
|
|
LOGGING_LEVEL_stirling.software.SPDF.service.PdfJsonConversionService: TRACE
|
|
networks:
|
|
- stirling-network
|
|
|
|
frontend:
|
|
build:
|
|
context: ../..
|
|
dockerfile: docker/frontend/Dockerfile
|
|
container_name: stirling-pdf-frontend
|
|
restart: on-failure:5
|
|
ports:
|
|
- "3000:80"
|
|
environment:
|
|
BACKEND_URL: http://backend:8080
|
|
#VITE_GOOGLE_DRIVE_CLIENT_ID: <INSERT_YOUR_CLIENT_ID_HERE>
|
|
#VITE_GOOGLE_DRIVE_API_KEY: <INSERT_YOUR_API_KEY_HERE>
|
|
#VITE_GOOGLE_DRIVE_APP_ID: <INSERT_YOUR_APP_ID_HERE>
|
|
depends_on:
|
|
- backend
|
|
networks:
|
|
- stirling-network
|
|
|
|
networks:
|
|
stirling-network:
|
|
driver: bridge
|
|
|
|
volumes:
|
|
stirling-data:
|
|
stirling-config:
|
|
stirling-logs:
|