This commit is contained in:
myve 2024-08-10 09:07:11 +00:00
commit e650d80b1e
58 changed files with 1747 additions and 0 deletions

9
stirling-pdf/.env Normal file
View file

@ -0,0 +1,9 @@
# Environment file for docker-compose.yaml
# Generate new passwords with:
# openssl rand -hex 32
# Fill in registry
REGISTRY=
# Stirling PDF
STIRLINGPDF_PORT=

View file

@ -0,0 +1,20 @@
services:
# https://github.com/Stirling-Tools/Stirling-PDF
stirling-pdf:
image: ${REGISTRY}/s-pdf
container_name: stirling-pdf
restart: unless-stopped
ports:
- ${STIRLINGPDF_PORT:-8080}:8080
environment:
DOCKER_ENABLE_SECURITY: true
volumes:
- ./tesseract-ocr:/usr/share/tesseract-ocr/5/tessdata
- ./config:/configs
networks:
- stirling-pdf
networks:
stirling-pdf:
external: false