vuetorrent独立部署版使用nginx容器作为反向代理,可以在不替换原因qbittorrent webui的情况下,独立使用vuetorrent。
Docker镜像:DockerHub:nukewarrior/vuetorrent-standalone
VueTorrent项目地址:GitHub:VueTorrent/VueTorrent
docker run -itd \
-p 8888:80 \
--name vqb \
-e QB_HOST=http://192.168.2.34 \
-e QB_PORT=8080 \
nukecat/vuetorrent-standalone:latest
- 修改vqb为你自己中意的容器名称
- 修改8888为你自己中意的端口号,这个端口号是用来访问vuetorrent的
- 修改QB_HOST为你的qbittorrent容器访问IP或域名,比如https://my.domain.com , 不要忘了http:// 或者 https://
- 修改QB_PORT为你的qbittorrent容器访问端口
- 访问vuetorrent并使用qbtorrent的账号密码登录
-
从 https://github.com/VueTorrent/VueTorrent/releases 下载最新的vuetorrent压缩包
-
解压zip包
-
构建镜像
docker build -t 你的镜像名:你的镜像tag .
-
运行镜像并添加
QB_HOST
及QB_PORT
环境变量 -
访问vuetorrent并使用qbtorrent的账号密码登录