威联通部署qbittorrentee

qbittorrent的增强版,可以自动更新tracker,开箱即用~!

创建新应用程序:

compose文件内容

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
version: "3"
services:
qbittorrentee:
image: superng6/qbittorrentee #容器名
container_name: qbittorrentee #使用镜像
network_mode: host #网络模式使用host
restart: unless-stopped
environment:
- TZ=Asia/Shanghai
- WEBUIPORT=30120 #WEB管理页面端口
- PUID=1000
- PGID=1000 #PUID和PGID建议设置为非ADMIN用户的ID,方便SMB管理
volumes:
- /share/hotdata/docker/qbittorrent:/config #配置目录
- /share/media/downloads:/downloads #下载目录

完成后使用ip:30120地址打开.

qbittorrentee

首次部署默认用户名和密码需要查看容器日志.

qbittorrentee