最近在下bt,想着反正带宽闲着也是闲着,于是下完了也在做种
但是发现吸血雷猛跑流量,在网上看了一下,用docker把迅雷屏蔽掉

相信mjj人均会玩docker了,qbittorrent开启webui,修改下面对应的变量,qbittorrent地址、用户、密码,一键运行屏蔽

docker run -d \    --name=qbittorrent-clientblocker --network=bridge --restart unless-stopped \    -e useENV=true \    -e debug=false \    -e logPath=logs \    -e blockList='[".+XunLei.+"]' \    -e clientURL=http://example.com \    -e clientUsername=exampleUser \    -e clientPassword=examplePass \    simpletracker/qbittorrent-clientblocker:latest

查看日志

 docker logs qbittorrent-clientblocker

github项目地址