diff --git a/stirling-pdf/docker-compose.yml b/stirling-pdf/docker-compose.yml new file mode 100644 index 00000000..9eeb48dd --- /dev/null +++ b/stirling-pdf/docker-compose.yml @@ -0,0 +1,22 @@ +version: '3.9' +services: + stirling-pdf: + container_name: Stirling-PDF + image: frooodle/s-pdf + mem_limit: 2g + cpu_shares: 768 + security_opt: + - no-new-privileges:true + ports: + - 8020:8080 + volumes: + - ./volume/data:/usr/share/tesseract-ocr/4.00/tessdata:rw # Required for extra OCR languages + - ./volume/config:/configs:rw + environment: + APP_LOCALE: de_DE # or fr_FR or de_DE + APP_HOME_NAME: Stirling PDF + APP_HOME_DESCRIPTION: Stirling PDF + APP_NAVBAR_NAME: Stirling PDF + APP_ROOT_PATH: /pdf +# ALLOW_GOOGLE_VISABILITY: true # or false + restart: on-failure:5 \ No newline at end of file