debian12 docker安装qbittorrent 4.6.5

安装docker

wget -qO- get.docker.com | bash
systemctl start docker
systemctl enable docker

安装qBittorrent Docker镜像

sudo docker pull linuxserver/qbittorrent

创建并运行qBittorrent容器

sudo docker run -d \
  --name=qbittorrent \
  -e PUID=1000 \
  -e PGID=1000 \
  -e WEBUI_PORT=8080 \  # Web界面端口
  -p 8080:8080 \
  -v /path/to/qbittorrent/config:/config \  # 配置文件路径【修改】
  -v /path/to/downloads:/downloads \  # 下载文件路径【修改】
  --restart unless-stopped \
  linuxserver/qbittorrent
services:
  qbittorrent:
    image: linuxserver/qbittorrent
    container_name: qbittorrent
    environment:
      - PUID=1000
      - PGID=1000
      - WEBUI_PORT=8080  # Web 界面端口
    ports:
      - "8080:8080"  # 端口映射
    volumes:
      - /path/to/qbittorrent/config:/config  # 配置文件路径【修改】
      - /path/to/downloads:/downloads  # 下载文件路径【修改】
    restart: unless-stopped
services:
  qbittorrent:
    image: linuxserver/qbittorrent
    container_name: qbittorrent
    environment:
      - PUID=1000
      - PGID=1000
      - WEBUI_PORT=8080
    volumes:
      - ./config:/config
      - ./downloads:/downloads
    restart: unless-stopped
    labels:
      - "com.centurylinklabs.watchtower.enable=false"

networks:
  default:
    external: true
    name: dockernetwork

查看登录密码

新版本初始密码变成随机密码了,查看日志获取

docker logs qbittorrent

登陆后可以在设置-webui修改账号密码

新版语言设置改到behavior了,不习惯

图片[1]-debian12 docker安装qbittorrent 4.6.5-THsInk

© 版权声明
THE END
喜欢就支持一下吧
点赞0 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!无需注册,过短或乱码评论会被屏蔽。
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容