debian/ubuntu/contosDocker安装qbittorrent客户端离线下载或做种

 


安装docker

curl https://get.docker.com | bash

开启ipv6访问

vim /etc/docker/daemon.json

编辑文件,写入以下配置:

 {

     "ipv6": true,

     "fixed-cidr-v6": "你的IPv6网段/64"

   }

保存并退出,重启。

systemctl restart docker

如果你已经安装了qB,请重新安装。 

安装代码:

docker pull lscr.io/linuxserver/qbittorrent

docker run -d \
  --name=qbittorrent \
  -e PUID=1000 \
  -e PGID=1000 \
  -e TZ=Etc/UTC \
  -e WEBUI_PORT=8081 \
  -p 8081:8081 \
  -p 57000:57000 \
  -p 57000:57000/udp \
  -v /home/qbittorrent/config:/config \
  -v /home/qbittorrent/downloads:/downloads \
  --restart unless-stopped \
  lscr.io/linuxserver/qbittorrent

ip:8081进面板, 

初始用户名密码用docker log {容器ID}查看。

记得进入面板后将端口改为57000或者端口映射自定义端口。


评论

热门博文