Qbittorrent Docker#
A BitTorrent client in Qt
Docker#
docker run -d \
--name=qbittorrent \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Etc/UTC \
-e WEBUI_PORT=8080 \
-p 8080:8080 \
-p 6881:6881 \
-p 6881:6881/udp \
-v /path/to/appdata/config:/config \
-v /path/to/downloads:/downloads \
--restart unless-stopped \
lscr.io/linuxserver/qbittorrent:latest
docker run -d --name=qbittorrent -p 8080:8080 -p 6881:6881 -p 6881:6881/udp lscr.io/linuxserver/qbittorrent
Docker Compose#
---
services:
qbittorrent:
image: lscr.io/linuxserver/qbittorrent:latest
container_name: qbittorrent
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
- WEBUI_PORT=8080
volumes:
- /path/to/appdata/config:/config
- /path/to/downloads:/downloads
ports:
- 8080:8080
- 6881:6881
- 6881:6881/udp
restart: unless-stopped
Settings#
Tools -> Options -> Web UI -> Authentication: Username/Password
Tips#
下载元数据#
Tracker -> 添加Tracker: trackers_all
Runtime Environment#
C++