美文网首页
docker安装qbittorrent

docker安装qbittorrent

作者: 科英 | 来源:发表于2021-10-21 12:28 被阅读0次

1.拉取镜像

docker pull linuxserver/qbittorrent

2.运行镜像

docker run -d \
  --name=bt \
  -e WEBUI_PORT=8080 \
  -p 9821:6881 \
  -p 9821:6881/udp \
  -p 8080:8080 \
  -v <宿主机目录>:/downloads \
  --restart unless-stopped \
  linuxserver/qbittorrent

3.浏览器打开地址http://localhost:8080/
4.webUI 账户:admin 密码:adminadmin

相关文章

网友评论

      本文标题:docker安装qbittorrent

      本文链接:https://www.haomeiwen.com/subject/wuyfaltx.html