43 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| version: "3.9"
 | |
| services:
 | |
|   stirling-pdf:
 | |
|     image: frooodle/s-pdf:0.19.0
 | |
|     restart: unless-stopped
 | |
|     container_name: stirling-pdf
 | |
|     privileged: true
 | |
|     ports:
 | |
|       - ${APP_PORT}:8080
 | |
|     volumes:
 | |
|       - ${APP_DATA_DIR}/data/trainingData:/usr/share/tesseract-ocr/5/tessdata #Required for extra OCR languages
 | |
|       - ${APP_DATA_DIR}/data/extraConfigs:/configs
 | |
|       - ${APP_DATA_DIR}/data/customFiles:/customFiles/
 | |
|       - ${APP_DATA_DIR}/data/logs:/logs/
 | |
|     environment:
 | |
|       - DOCKER_ENABLE_SECURITY=${STIRLING_PDF_DOCKER_ENABLE_SECURITY-false}
 | |
|     networks:
 | |
|       - tipi_main_network
 | |
|     labels:
 | |
|       # Main
 | |
|       traefik.enable: true
 | |
|       traefik.http.middlewares.stirling-pdf-web-redirect.redirectscheme.scheme: https
 | |
|       traefik.http.services.stirling-pdf.loadbalancer.server.port: 8080
 | |
|       # Web
 | |
|       traefik.http.routers.stirling-pdf-insecure.rule: Host(`${APP_DOMAIN}`)
 | |
|       traefik.http.routers.stirling-pdf-insecure.entrypoints: web
 | |
|       traefik.http.routers.stirling-pdf-insecure.service: stirling-pdf
 | |
|       traefik.http.routers.stirling-pdf-insecure.middlewares: stirling-pdf-web-redirect
 | |
|       # Websecure
 | |
|       traefik.http.routers.stirling-pdf.rule: Host(`${APP_DOMAIN}`)
 | |
|       traefik.http.routers.stirling-pdf.entrypoints: websecure
 | |
|       traefik.http.routers.stirling-pdf.service: stirling-pdf
 | |
|       traefik.http.routers.stirling-pdf.tls.certresolver: myresolver
 | |
|       # Local domain
 | |
|       traefik.http.routers.stirling-pdf-local-insecure.rule: Host(`stirling-pdf.${LOCAL_DOMAIN}`)
 | |
|       traefik.http.routers.stirling-pdf-local-insecure.entrypoints: web
 | |
|       traefik.http.routers.stirling-pdf-local-insecure.service: stirling-pdf
 | |
|       traefik.http.routers.stirling-pdf-local-insecure.middlewares: stirling-pdf-web-redirect
 | |
|       # Local domain secure
 | |
|       traefik.http.routers.stirling-pdf-local.rule: Host(`stirling-pdf.${LOCAL_DOMAIN}`)
 | |
|       traefik.http.routers.stirling-pdf-local.entrypoints: websecure
 | |
|       traefik.http.routers.stirling-pdf-local.service: stirling-pdf
 | |
|       traefik.http.routers.stirling-pdf-local.tls: true | 
