一键部署 vertex + qBittorrent 进行刷流。

docker-compse.yml

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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
version: "3"

services:
qbittorrent:
image: linuxserver/qbittorrent:latest
container_name: PT-qbittorrent
environment:
- PUID=0
- PGID=0
- TZ=Asia/Shanghai
- WEBUI_PORT=8080
- TORRENTING_PORT=16881
volumes:
- ./qbittorrent/:/config
- ${DOWNLOADS_PATH}:/downloads
ports:
- "8080:8080" # Web 界面端口
- "16881:16881/tcp" # BT 下载 TCP 端口
- "16881:16881/udp" # BT 下载 UDP 端口
restart: unless-stopped

vertex:
image: lswl/vertex:stable
container_name: PT-vertex
volumes:
- ./vertex:/vertex
ports:
- "3000:3000" # 前端界面端口
environment:
- TZ=Asia/Shanghai
restart: unless-stopped

# alist: # 可选安装
# image: xhofe/alist:beta
# container_name: PT-alist
# volumes:
# - ./alist:/opt/alist/data
# - ${DOWNLOADS_PATH}:/downloads
# ports:
# - "5244:5244" # 文件管理界面端口
# environment:
# - PUID=0
# - PGID=0
# - UMASK=022
# restart: unless-stopped

.env

1
DOWNLOADS_PATH=/downloads

密码获取

  1. qbittorrent

    运行:docker logs PT-qbittorrent后,在日志中查看

  2. vertex

    在文件 ./vertex/data/password 中查看

  3. alist

    运行 docker exec PT-alist ./alist admin set admin 来重置密码为 admin