mirror of
				https://github.com/tborychowski/self-hosted-cookbook.git
				synced 2025-11-04 07:37:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			59 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
# qbittorrent
 | 
						|
- linuxserver image allows theming with mods!
 | 
						|
- less ugly with docker-mods theme
 | 
						|
- probably the best (as of today)
 | 
						|
 | 
						|
<br>
 | 
						|
 | 
						|
- [Homepage](https://www.qbittorrent.org/)
 | 
						|
- [Github repo](https://github.com/qbittorrent/qBittorrent)
 | 
						|
- [DockerHub repo](https://hub.docker.com/r/linuxserver/qbittorrent)
 | 
						|
 | 
						|

 | 
						|
 | 
						|
 | 
						|
## docker-compose.yml
 | 
						|
```yml
 | 
						|
---
 | 
						|
services:
 | 
						|
  qbittorrent:
 | 
						|
    image: lscr.io/linuxserver/qbittorrent:latest
 | 
						|
    container_name: qbittorrent
 | 
						|
    restart: unless-stopped
 | 
						|
    environment:
 | 
						|
      - PUID=1000
 | 
						|
      - PGID=1000
 | 
						|
      - TZ=Europe/Dublin
 | 
						|
      - UMASK_SET=022
 | 
						|
      - WEBUI_PORT=3030
 | 
						|
	  # apply a nice UI theme https://docs.theme-park.dev/setup/#docker-mods
 | 
						|
      - DOCKER_MODS=ghcr.io/gilbn/theme.park:qbittorrent
 | 
						|
      - TP_THEME=space-gray
 | 
						|
    volumes:
 | 
						|
      - ./config:/config
 | 
						|
      - ./downloads:/downloads
 | 
						|
    ports:
 | 
						|
      - 6881:6881
 | 
						|
      - 6881:6881/udp
 | 
						|
      - 3030:3030
 | 
						|
networks:
 | 
						|
  default:
 | 
						|
    ipam:
 | 
						|
      driver: default
 | 
						|
      config:   # set fixed subnet mask
 | 
						|
        - subnet: 192.168.80.0/24
 | 
						|
          gateway: 192.168.80.1
 | 
						|
```
 | 
						|
 | 
						|
and log-in with the default:
 | 
						|
username: admin
 | 
						|
password: adminadmin
 | 
						|
 | 
						|
## Tips & Tricks
 | 
						|
 | 
						|
### Disabling the auth for webUI
 | 
						|
- find the docker container IP, e.g. in /data/qbittorrent/logs
 | 
						|
- in the settings, in WebUI/Authentication - enter the net mask, e.g.: `192.168.80.0/24`
 | 
						|
 | 
						|

 |