群晖nas或linux环境Docker下安装qbittorrent

最后更新于:2021-04-14 15:51:29

 

在群晖nas或者linux环境下使用docker安装qbittorrent。

 

下载qbittorrent镜像

 
docker pull linuxserver/qbittorrent

创建容器

容器参数根据实际情况修改

docker create \
  --name=qbittorrent \
  --net=host \
  -e PUID=1000 \
  -e PGID=1000 \
  -e TZ=Asia/Shanghai \
  -e UMASK_SET=022 \
  -e WEBUI_PORT=8085 \
  -v /root/config:/config \
  -v /data:/downloads \
  --restart unless-stopped \
  linuxserver/qbittorrent

重启容器

docker restart qbittorrent