mirror of
https://git.myvelabs.com/docker/docker-compose.yaml.git
synced 2025-12-17 21:26:17 +00:00
Reboot
This commit is contained in:
parent
b7336a277f
commit
e650d80b1e
58 changed files with 1747 additions and 0 deletions
9
stirling-pdf/.env
Normal file
9
stirling-pdf/.env
Normal 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=
|
||||
20
stirling-pdf/docker-compose.yaml
Normal file
20
stirling-pdf/docker-compose.yaml
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue