| 
									
										
										
										
											2022-10-13 20:01:10 +00:00
										 |  |  | version: "3.7"
 | 
					
						
							|  |  |  | services:
 | 
					
						
							|  |  |  |   qbittorrent:
 | 
					
						
							| 
									
										
										
										
											2024-01-18 15:42:23 +00:00
										 |  |  |     image: lscr.io/linuxserver/qbittorrent:4.6.3
 | 
					
						
							| 
									
										
										
										
											2022-10-13 20:01:10 +00:00
										 |  |  |     container_name: qbittorrent
 | 
					
						
							|  |  |  |     dns:
 | 
					
						
							|  |  |  |       - ${DNS_IP}
 | 
					
						
							|  |  |  |     environment:
 | 
					
						
							|  |  |  |       - PUID=1000
 | 
					
						
							|  |  |  |       - PGID=1000
 | 
					
						
							|  |  |  |       - TZ=${TZ}
 | 
					
						
							|  |  |  |       - WEBUI_PORT=${APP_PORT}
 | 
					
						
							|  |  |  |     volumes:
 | 
					
						
							|  |  |  |       - ${APP_DATA_DIR}/data/config:/config
 | 
					
						
							| 
									
										
										
										
											2023-04-28 20:25:41 +00:00
										 |  |  |       - ${ROOT_FOLDER_HOST}/media/torrents:/media/torrents
 | 
					
						
							| 
									
										
										
										
											2022-10-13 20:01:10 +00:00
										 |  |  |     ports:
 | 
					
						
							|  |  |  |       - ${APP_PORT}:${APP_PORT}
 | 
					
						
							|  |  |  |       - 6881:6881
 | 
					
						
							|  |  |  |       - 6881:6881/udp
 | 
					
						
							|  |  |  |     restart: unless-stopped
 | 
					
						
							|  |  |  |     networks:
 | 
					
						
							|  |  |  |       - tipi_main_network
 | 
					
						
							|  |  |  |     labels:
 | 
					
						
							| 
									
										
										
										
											2023-06-18 16:02:29 +00:00
										 |  |  |       # Main
 | 
					
						
							|  |  |  |       traefik.enable: true
 | 
					
						
							|  |  |  |       traefik.http.middlewares.qbittorrent-web-redirect.redirectscheme.scheme: https
 | 
					
						
							|  |  |  |       traefik.http.services.qbittorrent.loadbalancer.server.port: ${APP_PORT}
 | 
					
						
							|  |  |  |       # Web
 | 
					
						
							|  |  |  |       traefik.http.routers.qbittorrent-insecure.rule: Host(`${APP_DOMAIN}`)
 | 
					
						
							|  |  |  |       traefik.http.routers.qbittorrent-insecure.entrypoints: web
 | 
					
						
							|  |  |  |       traefik.http.routers.qbittorrent-insecure.service: qbittorrent
 | 
					
						
							|  |  |  |       traefik.http.routers.qbittorrent-insecure.middlewares: qbittorrent-web-redirect
 | 
					
						
							|  |  |  |       # Websecure
 | 
					
						
							| 
									
										
										
										
											2022-10-13 20:01:10 +00:00
										 |  |  |       traefik.http.routers.qbittorrent.rule: Host(`${APP_DOMAIN}`)
 | 
					
						
							|  |  |  |       traefik.http.routers.qbittorrent.entrypoints: websecure
 | 
					
						
							|  |  |  |       traefik.http.routers.qbittorrent.service: qbittorrent
 | 
					
						
							|  |  |  |       traefik.http.routers.qbittorrent.tls.certresolver: myresolver
 | 
					
						
							| 
									
										
										
										
											2023-06-18 16:02:29 +00:00
										 |  |  |       # Local domain
 | 
					
						
							|  |  |  |       traefik.http.routers.qbittorrent-local-insecure.rule: Host(`qbittorrent.${LOCAL_DOMAIN}`)
 | 
					
						
							|  |  |  |       traefik.http.routers.qbittorrent-local-insecure.entrypoints: web
 | 
					
						
							|  |  |  |       traefik.http.routers.qbittorrent-local-insecure.service: qbittorrent
 | 
					
						
							|  |  |  |       traefik.http.routers.qbittorrent-local-insecure.middlewares: qbittorrent-web-redirect
 | 
					
						
							|  |  |  |       # Local domain secure
 | 
					
						
							|  |  |  |       traefik.http.routers.qbittorrent-local.rule: Host(`qbittorrent.${LOCAL_DOMAIN}`)
 | 
					
						
							|  |  |  |       traefik.http.routers.qbittorrent-local.entrypoints: websecure
 | 
					
						
							|  |  |  |       traefik.http.routers.qbittorrent-local.service: qbittorrent
 | 
					
						
							|  |  |  |       traefik.http.routers.qbittorrent-local.tls: true
 |