| 
									
										
										
										
											2022-07-28 17:46:12 +00:00
										 |  |  | version: "3.7"
 | 
					
						
							|  |  |  | services:
 | 
					
						
							|  |  |  |   transmission:
 | 
					
						
							| 
									
										
										
										
											2023-12-08 19:19:16 +00:00
										 |  |  |     image: lscr.io/linuxserver/transmission:4.0.5
 | 
					
						
							| 
									
										
										
										
											2022-07-28 17:46:12 +00:00
										 |  |  |     container_name: transmission
 | 
					
						
							|  |  |  |     dns:
 | 
					
						
							|  |  |  |       - ${DNS_IP}
 | 
					
						
							|  |  |  |     environment:
 | 
					
						
							|  |  |  |       - PUID=1000
 | 
					
						
							|  |  |  |       - PGID=1000
 | 
					
						
							|  |  |  |       - TZ=${TZ}
 | 
					
						
							|  |  |  |       - USER=${TRANSMISSION_USERNAME}
 | 
					
						
							|  |  |  |       - PASS=${TRANSMISSION_PASSWORD}
 | 
					
						
							| 
									
										
										
										
											2023-02-10 18:40:23 +00:00
										 |  |  |       # - TRANSMISSION_WEB_HOME=/transmission-web-control/
 | 
					
						
							| 
									
										
										
										
											2022-07-28 17:46:12 +00:00
										 |  |  |       # - WHITELIST=iplist #optional
 | 
					
						
							|  |  |  |       # - PEERPORT=peerport #optional
 | 
					
						
							|  |  |  |       # - HOST_WHITELIST=dnsnane list #optional
 | 
					
						
							|  |  |  |     volumes:
 | 
					
						
							|  |  |  |       - ${APP_DATA_DIR}/data/config:/config
 | 
					
						
							| 
									
										
										
										
											2023-04-28 20:25:41 +00:00
										 |  |  |       - ${ROOT_FOLDER_HOST}/media/torrents:/media/torrents
 | 
					
						
							| 
									
										
										
										
											2022-07-28 17:46:12 +00:00
										 |  |  |     ports:
 | 
					
						
							|  |  |  |       - ${APP_PORT}:9091
 | 
					
						
							|  |  |  |       - 51413:51413
 | 
					
						
							|  |  |  |       - 51413:51413/udp
 | 
					
						
							|  |  |  |     restart: unless-stopped
 | 
					
						
							|  |  |  |     networks:
 | 
					
						
							|  |  |  |       - tipi_main_network
 | 
					
						
							| 
									
										
										
										
											2022-11-11 19:33:58 +00:00
										 |  |  |     labels:
 | 
					
						
							| 
									
										
										
										
											2023-06-18 16:02:29 +00:00
										 |  |  |       # Main
 | 
					
						
							|  |  |  |       traefik.enable: true
 | 
					
						
							|  |  |  |       traefik.http.middlewares.transmission-web-redirect.redirectscheme.scheme: https
 | 
					
						
							|  |  |  |       traefik.http.services.transmission.loadbalancer.server.port: 9091
 | 
					
						
							|  |  |  |       # Web
 | 
					
						
							|  |  |  |       traefik.http.routers.transmission-insecure.rule: Host(`${APP_DOMAIN}`)
 | 
					
						
							|  |  |  |       traefik.http.routers.transmission-insecure.entrypoints: web
 | 
					
						
							|  |  |  |       traefik.http.routers.transmission-insecure.service: transmission
 | 
					
						
							|  |  |  |       traefik.http.routers.transmission-insecure.middlewares: transmission-web-redirect
 | 
					
						
							|  |  |  |       # Websecure
 | 
					
						
							| 
									
										
										
										
											2022-11-11 19:33:58 +00:00
										 |  |  |       traefik.http.routers.transmission.rule: Host(`${APP_DOMAIN}`)
 | 
					
						
							|  |  |  |       traefik.http.routers.transmission.entrypoints: websecure
 | 
					
						
							|  |  |  |       traefik.http.routers.transmission.service: transmission
 | 
					
						
							|  |  |  |       traefik.http.routers.transmission.tls.certresolver: myresolver
 | 
					
						
							| 
									
										
										
										
											2023-06-18 16:02:29 +00:00
										 |  |  |       # Local domain
 | 
					
						
							|  |  |  |       traefik.http.routers.transmission-local-insecure.rule: Host(`transmission.${LOCAL_DOMAIN}`)
 | 
					
						
							|  |  |  |       traefik.http.routers.transmission-local-insecure.entrypoints: web
 | 
					
						
							|  |  |  |       traefik.http.routers.transmission-local-insecure.service: transmission
 | 
					
						
							|  |  |  |       traefik.http.routers.transmission-local-insecure.middlewares: transmission-web-redirect
 | 
					
						
							|  |  |  |       # Local domain secure
 | 
					
						
							|  |  |  |       traefik.http.routers.transmission-local.rule: Host(`transmission.${LOCAL_DOMAIN}`)
 | 
					
						
							|  |  |  |       traefik.http.routers.transmission-local.entrypoints: websecure
 | 
					
						
							|  |  |  |       traefik.http.routers.transmission-local.service: transmission
 | 
					
						
							|  |  |  |       traefik.http.routers.transmission-local.tls: true
 |