2023-12-30 19:56:07 +01:00
|
|
|
version: '3.3'
|
|
|
|
services:
|
|
|
|
stirling-pdf:
|
|
|
|
container_name: Stirling-PDF
|
2024-01-01 15:57:52 +01:00
|
|
|
image: frooodle/s-pdf:latest
|
2023-12-30 19:56:07 +01:00
|
|
|
deploy:
|
|
|
|
resources:
|
|
|
|
limits:
|
2023-12-31 14:27:06 +01:00
|
|
|
memory: 4G
|
2023-12-30 19:56:07 +01:00
|
|
|
healthcheck:
|
|
|
|
test: ["CMD-SHELL", "curl -f http://localhost:8080/api/v1/info/status | grep -q 'UP' && curl -fL http://localhost:8080/ | grep -qv 'Please sign in'"]
|
2023-12-30 22:32:04 +01:00
|
|
|
interval: 5s
|
2023-12-30 19:56:07 +01:00
|
|
|
timeout: 10s
|
2023-12-30 22:32:04 +01:00
|
|
|
retries: 16
|
2023-12-30 19:56:07 +01:00
|
|
|
ports:
|
|
|
|
- 8080:8080
|
|
|
|
volumes:
|
2024-02-18 00:23:07 +01:00
|
|
|
- /stirling/latest/data:/usr/share/tessdata:rw
|
2023-12-30 19:56:07 +01:00
|
|
|
- /stirling/latest/config:/configs:rw
|
|
|
|
- /stirling/latest/logs:/logs:rw
|
|
|
|
environment:
|
|
|
|
DOCKER_ENABLE_SECURITY: "false"
|
|
|
|
SECURITY_ENABLELOGIN: "false"
|
2024-01-14 10:29:21 +01:00
|
|
|
SYSTEM_DEFAULTLOCALE: en-US
|
2023-12-30 19:56:07 +01:00
|
|
|
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"
|
|
|
|
restart: on-failure:5
|