1

自动屏蔽迅雷等吸血的qBittorrent增强版(qBittorrent Enhanced Edition)

发表于:昨天 15:53 应用分享 78

<br /> <br />

qBittorrent-Enhanced-Edition是一款qBittorrent的增强版软件,能自动更新Tracker服务器地址列表,源码都是qBittorrent,但是在源码的基础上,增加了屏蔽迅雷等一些吸血的客户端的功能。

项目地址:https://github.com/c0re100/qBittorrent-Enhanced-Edition

特别说明:我不玩PT,网上搜索说PT不接受qBittorrent-Enhanced-Edition的客户端,只接受普通的qBittorrent,qBittorrent-Enhanced-Edition可以用来下载普通的BT。

账号:admin 密码:日志里查

Docker命令部署:

docker run -d \
  --name=qbittorrent-ee \
  -e QB_WEBUI_PORT=8989 \
  -e QB_EE_BIN=true \
  -e UID=1000 \
  -e GID=1000 \
  -e UMASK=022 \
  -p 6881:6881 \
  -p 6881:6881/udp \
  -p 8989:8989 \
  -v /vol1/1000/docker/qbottprremt-ee/config:/config \
  -v /vol2/1000/Downloads:/Downloads \
  --restart always \
  johngong/qbittorrent:latest

-v 后面路径修改成自己的路径,冒号后面的路径是容器内路径,不要修改。

Docker Compose方式部署:

services:
  qbittorrent:
    image: johngong/qbittorrent
    container_name: qbittorrent-ee
    environment:
      - QB_WEBUI_PORT=8989
      - QB_EE_BIN=true
      - UID=1000
      - GID=1000
      - UMASK=022
    ports:
      - "6881:6881"
      - "6881:6881/udp"
      - "8989:8989"
    volumes:
      - ./config:/config
      - /vol2/1000/Downloads:/Downloads
    restart: always

volumes:下的路径修改成自己的路径,冒号后面的路径是容器内路径,不要修改。

收藏
送赞 1
分享

发表回复