Files
Stirling-PDF/docker/compose/docker-compose.fat.yml
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
1.2 KiB
YAML
Raw Normal View History

2025-07-11 14:16:34 +01:00
services:
stirling-pdf:
2025-07-11 14:16:34 +01:00
build:
context: ../..
dockerfile: docker/embedded/Dockerfile.fat
container_name: stirling-pdf-fat
2026-01-07 17:35:45 +00:00
restart: unless-stopped
2025-07-11 14:16:34 +01:00
deploy:
resources:
limits:
memory: 6G
healthcheck:
test: ["CMD-SHELL", "curl -f http://localhost:8080$${SYSTEM_ROOTURIPATH:-''}/api/v1/info/status | grep -q 'UP'"]
2025-07-11 14:16:34 +01:00
interval: 5s
timeout: 10s
retries: 16
ports:
- "8080:8080"
2025-07-11 14:16:34 +01:00
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:
2025-07-30 11:19:28 +01:00
stirling-logs: