| 
									
										
										
										
											2024-01-03 12:46:13 +00:00
										 |  |  | version: "3.9"
 | 
					
						
							| 
									
										
										
										
											2023-08-30 19:03:20 +00:00
										 |  |  | services:
 | 
					
						
							|  |  |  |   stirling-pdf:
 | 
					
						
							| 
									
										
										
										
											2024-02-11 02:35:35 +00:00
										 |  |  |     image: frooodle/s-pdf:0.20.2
 | 
					
						
							| 
									
										
										
										
											2023-08-30 19:03:20 +00:00
										 |  |  |     restart: unless-stopped
 | 
					
						
							|  |  |  |     container_name: stirling-pdf
 | 
					
						
							|  |  |  |     privileged: true
 | 
					
						
							|  |  |  |     ports:
 | 
					
						
							|  |  |  |       - ${APP_PORT}:8080
 | 
					
						
							|  |  |  |     volumes:
 | 
					
						
							| 
									
										
										
										
											2024-01-03 12:46:13 +00:00
										 |  |  |       - ${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}
 | 
					
						
							| 
									
										
										
										
											2023-08-30 19:03:20 +00:00
										 |  |  |     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
 | 
					
						
							| 
									
										
										
										
											2024-01-03 12:46:13 +00:00
										 |  |  |       traefik.http.routers.stirling-pdf-local.tls: true
 |