Docker安装Alist+Aria2+Qbittorrentee

alist网盘聚合工具
aria2下载器

安装Alist

1
docker run -d --restart=always -v /aria2:/aria2 -v /etc/alist:/opt/alist/data -p 5244:5244 --name="alist" xhofe/alist:latest

安装Aria2

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
docker run -d \
--name=aria2 \
-e PUID=0 \
-e PGID=0 \
-e TZ=Asia/Shanghai \
-e SECRET=输入自己的密码 \
-e CACHE=512M \
-e PORT=6800 \
-e BTPORT=32516 \
-e WEBUI=true \
-e WEBUI_PORT=8080 \
-e UT=true \
-e RUT=true \
-e FA=falloc \
-e QUIET=true \
-e SMD=true \
-p 32516:32516 \
-p 32516:32516/udp \
-p 6800:6800 \
-p 8080:8080 \
-v /aria2/config:/config \
-v /aria2/downloads:/downloads \
-v /etc/alist:/opt/alist/data \
--restart unless-stopped \
p3terx/aria2-pro

安装Qbittorrentee

注意:文件夹都需要设置 chmod 777 -R xxx文件夹权限

1
2
3
4
5
6
7
8
9
10
11
12
13
14
docker run -d  \
--name=qbittorrentee \
-e WEBUIPORT=8088 \
-e PUID=1026 \
-e PGID=100 \
-e TZ=Asia/Shanghai \
-p 6881:6881 \
-p 6881:6881/udp \
-p 8088:8088 \
-v /qbittorrent/config:/config \
-v /qbittorrent/downloads:/downloads \
-v /etc/alist:/opt/alist/data \
--restart unless-stopped \
superng6/qbittorrentee:latest

相关文章

Docker

Docker安装软件

Docker高级

Docker设置代理