48 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| version: "3.7"
 | |
| services:
 | |
|   qbittorrent:
 | |
|     image: lscr.io/linuxserver/qbittorrent:4.6.2
 | |
|     container_name: qbittorrent
 | |
|     dns:
 | |
|       - ${DNS_IP}
 | |
|     environment:
 | |
|       - PUID=1000
 | |
|       - PGID=1000
 | |
|       - TZ=${TZ}
 | |
|       - WEBUI_PORT=${APP_PORT}
 | |
|     volumes:
 | |
|       - ${APP_DATA_DIR}/data/config:/config
 | |
|       - ${ROOT_FOLDER_HOST}/media/torrents:/media/torrents
 | |
|     ports:
 | |
|       - ${APP_PORT}:${APP_PORT}
 | |
|       - 6881:6881
 | |
|       - 6881:6881/udp
 | |
|     restart: unless-stopped
 | |
|     networks:
 | |
|       - tipi_main_network
 | |
|     labels:
 | |
|       # 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
 | |
|       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
 | |
|       # 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
 | 
![renovate[bot]](/assets/img/avatar_default.png)