Last active
June 4, 2021 02:10
-
-
Save huazhanshen/3b33f6efd9ece009351500d2853536a3 to your computer and use it in GitHub Desktop.
docker安装qbittorrent
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1、Docker注册表搜索安装linuxserver/qbittorrent | |
2、docker下新建qbittorrent文件夹,再建立子文件夹(文件夹名见卷映射),全部赋予everyone的权限 | |
3、端口映射 | |
52000 52000/tcp | |
52000 52000/udp | |
8999 8999/tcp | |
4、卷映射 | |
/qbittorrent/config /config | |
/qbittorrent/downloads /downloads | |
5、环境变量配置 | |
```language | |
PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin //运行环境变量 | |
PS1 $(whoami)@$(hostname):$(pwd)$ //运行目录 | |
HOME /config //配置文件目录 | |
TERM xterm | |
XDG_CONFIG_HOME /config | |
XDG_DATA_HOME /config | |
TempPath /downloads //临时文件的保存路径 | |
SavePath /downloads //下载保存的路径 | |
WEBUI_PORT 8999 //网页访问的端口号 | |
``` | |
6、输入ip:8999启动webui,admin账户登陆 | |
7、web页面配置 | |
 | |
8、全网热门 BitTorrent Tracker 列表 | |
[https://trackerslist.com/all.txt](https://trackerslist.com/all.txt) | |
[https://trackerslist.com/#/zh](https://trackerslist.com/#/zh) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment