mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2026-03-04 02:20:19 +01:00
46 lines
1.2 KiB
YAML
46 lines
1.2 KiB
YAML
services:
|
|
stirling-pdf:
|
|
build:
|
|
context: ../..
|
|
dockerfile: docker/embedded/Dockerfile.fat
|
|
container_name: stirling-pdf-fat
|
|
restart: unless-stopped
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
memory: 6G
|
|
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"
|
|
volumes:
|
|
- ../../stirling/latest/data:/usr/share/tessdata:rw
|
|
- ../../stirling/latest/config:/configs:rw
|
|
- ../../stirling/latest/logs:/logs:rw
|
|
environment:
|
|
DISABLE_ADDITIONAL_FEATURES: "false"
|
|
SECURITY_ENABLELOGIN: "false"
|
|
FAT_DOCKER: "true"
|
|
SYSTEM_DEFAULTLOCALE: en-US
|
|
UI_APPNAME: Stirling-PDF
|
|
UI_HOMEDESCRIPTION: Full-featured Stirling-PDF with all capabilities
|
|
UI_APPNAMENAVBAR: Stirling-PDF Fat
|
|
SYSTEM_MAXFILESIZE: "200"
|
|
METRICS_ENABLED: "true"
|
|
SYSTEM_GOOGLEVISIBILITY: "true"
|
|
SHOW_SURVEY: "true"
|
|
networks:
|
|
- stirling-network
|
|
|
|
networks:
|
|
stirling-network:
|
|
driver: bridge
|
|
|
|
volumes:
|
|
stirling-data:
|
|
stirling-config:
|
|
stirling-logs:
|