| 
									
										
										
										
											2022-07-28 17:46:12 +00:00
										 |  |  | version: "3.7"
 | 
					
						
							|  |  |  | services:
 | 
					
						
							|  |  |  |   prowlarr: # Should be exact same name as "id" field in config.json
 | 
					
						
							|  |  |  |     container_name: prowlarr # Should be exact same name as "id" field in config.json
 | 
					
						
							|  |  |  |     image: ghcr.io/linuxserver/prowlarr:develop
 | 
					
						
							|  |  |  |     environment:
 | 
					
						
							|  |  |  |       - TZ=${TZ} # Can use any env variable. List in runtipi/templates/env-sample
 | 
					
						
							|  |  |  |     dns:
 | 
					
						
							|  |  |  |       - ${DNS_IP}
 | 
					
						
							|  |  |  |     volumes:
 | 
					
						
							|  |  |  |       - ${APP_DATA_DIR}/data/config:/config #Always start the path with ${APP_DATA_DIR}. This will put all data inside app-data/my-app/data
 | 
					
						
							|  |  |  |     ports:
 | 
					
						
							|  |  |  |       - ${APP_PORT}:9696
 | 
					
						
							|  |  |  |     restart: unless-stopped
 | 
					
						
							|  |  |  |     networks:
 | 
					
						
							|  |  |  |       - tipi_main_network
 | 
					
						
							| 
									
										
										
										
											2022-11-11 19:33:58 +00:00
										 |  |  |     labels:
 | 
					
						
							|  |  |  |       traefik.enable: ${APP_EXPOSED}
 | 
					
						
							|  |  |  |       traefik.http.routers.prowlarr.rule: Host(`${APP_DOMAIN}`)
 | 
					
						
							|  |  |  |       traefik.http.routers.prowlarr.entrypoints: websecure
 | 
					
						
							|  |  |  |       traefik.http.routers.prowlarr.service: prowlarr
 | 
					
						
							|  |  |  |       traefik.http.routers.prowlarr.tls.certresolver: myresolver
 | 
					
						
							|  |  |  |       traefik.http.services.prowlarr.loadbalancer.server.port: 9696
 |