Files

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

41 lines
1.1 KiB
YAML
Raw Permalink 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
container_name: stirling-pdf
2026-01-07 17:35:45 +00:00
restart: unless-stopped
2025-07-11 14:16:34 +01:00
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: "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"
networks:
- stirling-network
networks:
stirling-network:
driver: bridge
volumes:
stirling-data:
stirling-config:
2025-07-30 11:19:13 +01:00
stirling-logs: