Stirling-PDF/exampleYmlFiles/docker-compose-latest-ultra-lite-security.yml

51 lines
1.6 KiB
YAML
Raw Permalink Normal View History

2023-12-30 19:56:07 +01:00
services:
stirling-pdf:
container_name: Stirling-PDF-Ultra-Lite-Security
2024-11-16 12:31:26 +01:00
image: stirlingtools/stirling-pdf:latest-ultra-lite
2023-12-30 19:56:07 +01:00
deploy:
resources:
limits:
memory: 1G
2024-12-20 21:04:56 +01:00
depends_on:
- db
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 -q '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:
2024-06-05 22:16:22 +02:00
- "8080:8080"
2023-12-30 19:56:07 +01:00
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: "true"
SECURITY_ENABLELOGIN: "true"
SYSTEM_DEFAULTLOCALE: en-US
2024-01-01 15:57:52 +01:00
UI_APPNAME: Stirling-PDF-Lite
UI_HOMEDESCRIPTION: Demo site for Stirling-PDF-Lite Latest with Security
UI_APPNAMENAVBAR: Stirling-PDF-Lite Latest
2023-12-30 19:56:07 +01:00
SYSTEM_MAXFILESIZE: "100"
METRICS_ENABLED: "true"
SYSTEM_GOOGLEVISIBILITY: "true"
2024-12-22 10:17:51 +01:00
SYSTEM_DATASOURCE_TYPE: "postgresql"
SYSTEM_DATASOURCE_HOSTNAME: "db"
SYSTEM_DATASOURCE_PORT: "5432"
SYSTEM_DATASOURCE_NAME: "stirling_pdf"
2024-12-23 11:40:25 +01:00
SYSTEM_DATASOURCE_ENABLECUSTOMDATABASE: "false"
2024-12-22 10:17:51 +01:00
SYSTEM_DATASOURCE_USERNAME: "admin"
SYSTEM_DATASOURCE_PASSWORD: "stirling"
2023-12-30 19:56:07 +01:00
restart: on-failure:5
2024-12-20 21:04:56 +01:00
db:
image: 'postgres:17.2-alpine'
restart: on-failure:5
shm_size: 32mb
container_name: db
ports:
- "5432:5432"
environment:
POSTGRES_DB: "stirling_pdf"
POSTGRES_USER: "admin"
POSTGRES_PASSWORD: "stirling"