16 lines
433 B
YAML
16 lines
433 B
YAML
services:
|
|
stirling_pdf:
|
|
image: frooodle/s-pdf:latest
|
|
container_name: stirling_pdf
|
|
ports:
|
|
- 8003:8080
|
|
volumes:
|
|
- ./trainingData:/usr/share/tesseract-ocr/5/tessdata #Required for extra OCR languages
|
|
- ./Configs:/configs
|
|
# - /location/of/customFiles:/customFiles/
|
|
# - /location/of/logs:/logs/
|
|
environment:
|
|
- DOCKER_ENABLE_SECURITY=false
|
|
restart: unless-stopped
|
|
|