轩辕镜像 官方专业版
轩辕镜像
专业版
轩辕镜像 官方专业版
轩辕镜像
专业版
首页个人中心搜索镜像
交易
充值流量¥8起我的订单
文档
工具
提交工单页面收录
qbittorrent-nox

qbittorrentofficial/qbittorrent-nox

qbittorrentofficial

官方qbittorrent-nox Docker镜像是由qbittorrent开发团队官方维护的、针对无图形界面版本qbittorrent-nox的容器化部署包,旨在为用户提供安全可靠、易于跨平台部署的BT客户端运行环境,适用于服务器、云平台等需高效后台运行的场景,用户可通过Docker快速拉取并配置使用,无需复杂依赖管理,确保与官方版本同步更新及良好兼容性。

91 次收藏下载次数: 0状态:社区镜像维护者:qbittorrentofficial仓库类型:镜像最近更新:9 天前
让 AI 帮你使用轩辕镜像? · 展开查看说明 · 点击收起说明

如果你使用 DeepSeek、元宝 AI、Copilot、ChatGPT 等 AI 工具,协助配置轩辕镜像、编写 docker pull 命令、修改 Docker Compose 镜像地址、配置镜像加速、排查镜像拉取失败、分析报错日志等问题,请先让 AI 阅读并遵守轩辕镜像的规则文档。

只需在 AI 对话中先发送下面这段话即可:

请先阅读并遵守:https://xuanyuan.cloud/agents.md

未读文档前不要生成 pull 命令或排错方案。

查看 agents.md 用法指南与完整示范。国内用户首推 元宝 AI、DeepSeek 的深度思考模式,不推荐豆包 AI;Cursor 等编辑器可在对话 @ 该链接,或加入 User Rules。 若 AI 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。

DockerHub 官方简介
轩辕镜像中文简介
下载命令
镜像标签列表与下载命令
轩辕镜像,让镜像更快,让人生更轻。
点击查看

qBittorrent-nox Docker Image

Repository on Docker Hub: https://hub.docker.com/r/qbittorrentofficial/qbittorrent-nox
Repository on GitHub: https://github.com/qbittorrent/docker-qbittorrent-nox

Supported architectures

  • linux/386
  • linux/amd64
  • linux/arm/v6
  • linux/arm/v7
  • linux/arm64/v8
  • linux/riscv64

Reporting bugs

If the problem is related to Docker, please report it to this repository:
https://github.com/qbittorrent/docker-qbittorrent-nox/issues

If the problem is with qBittorrent, please report the issue to its main repository:
https://github.com/qbittorrent/qBittorrent/issues

Usage

0. Prerequisites

In order to run this image you will need Docker installed: https://docs.docker.com/get-docker/

If you don't need the GUI, you can just install Docker Engine: https://docs.docker.com/engine/install/

It is also recommended to install Docker Compose as it can simplify the process significantly: https://docs.docker.com/compose/install/

1. Download this repository

You can either git clone this repository or https://github.com/qbittorrent/docker-qbittorrent-nox/archive/refs/heads/main.zip as a zip archive.

2. Edit Docker environment file

If you are using Docker Stack, refer to https://github.com/qbittorrent/docker-qbittorrent-nox/blob/main/docker-stack.yml file as an example.
It is an almost ready-to-use configuration, though a few variables need to be filled in. Make sure you read the following steps as they largely share the same concept.

If you are not using Docker Compose, you can skip editing the environment file. However, the variables presented below are crucial for later steps, so make sure you understand them.

Find and open the .env file in the repository you cloned (or the .zip archive you downloaded).
There are a few variables that you must set before you can run the image.
You can find the meanings of these variables in the following section. Make sure you understand every one of them.

Environment variables

  • QBT_LEGAL_NOTICE
    Confirm that you have read https://github.com/qbittorrent/qBittorrent/blob/56667e717b82c79433ecb8a5ff6cc2d7b315d773/src/app/main.cpp#L320-L323.
    Put confirm only if you have read the legal notice.
  • QBT_VERSION
    The version of qBittorrent-nox to use.
    It can be the latest stable version: latest, a https://hub.docker.com/r/qbittorrentofficial/qbittorrent-nox/tags: 4.4.5-1 or the bleeding-edge weekly build: alpha.
    An lt2 variation which uses libtorrent v2.0.x is also available. However, users have reported https://github.com/arvidn/libtorrent/issues/6667 so use at your own risk!
  • QBT_TORRENTING_PORT
    The port number for torrenting traffic.
    Defaults to port 6881 if value is not set.
  • QBT_WEBUI_PORT
    The port number for qBittorrent WebUI.
    Defaults to port 8080 if value is not set.

Volumes

  • <your_path>/config
    Full path to a folder on your host machine which will store qBittorrent configurations. Using a relative path will not work.
  • <your_path>/downloads
    Full path to a folder on your host machine which will store the files downloaded by qBittorrent. Using a relative path will not work.

3. Running the image

  • If using Docker (not Docker Compose), edit the variables and run:

    shell
    export \
      QBT_LEGAL_NOTICE=<put_confirm_here> \
      QBT_VERSION=latest \
      QBT_TORRENTING_PORT=6881 \
      QBT_WEBUI_PORT=8080 \
      QBT_CONFIG_PATH="<your_path>/config" \
      QBT_DOWNLOADS_PATH="<your_path>/downloads"
    docker run \
      -t \
      --name qbittorrent-nox \
      --read-only \
      --rm \
      --stop-timeout 1800 \
      --tmpfs /tmp \
      -e QBT_LEGAL_NOTICE \
      -e QBT_TORRENTING_PORT \
      -e QBT_WEBUI_PORT \
      -p "$QBT_TORRENTING_PORT":"$QBT_TORRENTING_PORT"/tcp \
      -p "$QBT_TORRENTING_PORT":"$QBT_TORRENTING_PORT"/udp \
      -p "$QBT_WEBUI_PORT":"$QBT_WEBUI_PORT"/tcp \
      -v "$QBT_CONFIG_PATH":/config \
      -v "$QBT_DOWNLOADS_PATH":/downloads \
      qbittorrentofficial/qbittorrent-nox:${QBT_VERSION}
    
  • If using Docker Compose:

    shell
    docker compose up
    

Tweaking the options

  • The image value can be changed to ghcr.io/qbittorrent/docker-qbittorrent-nox:${QBT_VERSION} to use the GitHub mirror.

  • To pass additional command-line arguments to qbittorrent-nox, append them to the end of the docker run ... command. If using Docker Compose, modify the command: array in https://github.com/qbittorrent/docker-qbittorrent-nox/blob/main/docker-compose.yml.

  • ⚠️ To ensure qBittorrent has enough time to shut down properly, you must override the container's stop timeout.
    If unspecified, the default value is only 10 seconds, which is too short and can interrupt the shutdown procedure, leading to corrupted files.
    Set --stop-timeout 1800 (or stop_grace_period: 30m when using Docker Compose).

  • To change the timezone in the container, set the TZ environment variable to your preferred value.
    The default is inherited from Alpine Linux, which is most likely UTC.

  • To change the User ID (UID) and Group ID (GID) of the qbittorrent-nox process, set the environment variables PUID and PGID respectively.
    The default is 1000 for both.

    • 📢 You will need to remove the --read-only flag (when using Docker) or set read_only: false (when using Docker Compose), as these settings are incompatible.
    • These environment variables have no effect when running the image in rootless mode.
  • To set additional group IDs (AGID) for the qbittorrent-nox process, set the environment variable PAGID. For example: 10000,10001. This will set the process to be in two (secondary) groups, 10000 and 10001.
    By default, there are no additional groups.

    • 📢 You will need to remove the --read-only flag (when using Docker) or set read_only: false (when using Docker Compose), as these settings are incompatible.
    • This environment variable has no effect when running the image in rootless mode.
  • To set the umask of the qbittorrent-nox process, set the environment variable UMASK.
    The default is inherited from Alpine Linux.

  • To list the compile-time Software Bill of Materials (SBOM), run:

    shell
    docker run --entrypoint /bin/cat --rm qbittorrentofficial/qbittorrent-nox:latest /sbom.txt
    

Log in to qBittorrent-nox at: http://<your_docker_host_address>:8080

  • For newer qBittorrent versions (≥ 4.6.1), qBittorrent will generate a temporary password and print it to the console (via stdout). You will need to use this password to log in. See the announcement.
    If you don't have a console attached, you can run the following to view the logs:

    shell
    docker logs qbittorrent-nox
    
  • For older qBittorrent versions (< 4.6.1), the default username/password is: admin/adminadmin.

[!IMPORTANT] Don't forget to change your password after logging in!
To change it in WebUI: Tools menu -> Options... -> WebUI tab -> Authentication

4. Stopping the container

  • When using Docker (not Docker Compose):

    shell
    docker stop qbittorrent-nox
    
  • When using Docker Compose:

    shell
    docker compose down
    

Build the image manually

Refer to the https://github.com/qbittorrent/docker-qbittorrent-nox/tree/main/manual_build folder.

Debugging

To attach the GNU Debugger (gdb) to the running qbittorrent-nox process, follow the steps below:

  1. Before you start the container

    • Remove --read-only because additional packages are needed inside the container.
      Or disable the respective attributes in https://github.com/qbittorrent/docker-qbittorrent-nox/blob/main/docker-compose.yml.
    • Add --cap-add=SYS_PTRACE to the docker run argument list.
      Or enable the respective attributes in https://github.com/qbittorrent/docker-qbittorrent-nox/blob/main/docker-compose.yml.
  2. Start the container

  3. Drop into the container

    shell
    # find container ID
    docker ps
    # open an interactive shell in the container
    docker exec -it <container_id> /bin/sh
    
  4. Install packages

    shell
    apk add \
      gdb \
      musl-dbg
    
  5. Attach gdb to the running process

    shell
    # find the PID of qbittorrent-nox
    ps -a
    # attach the debugger to the process
    gdb -p <PID>
    

镜像拉取方式

您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。

轩辕镜像加速拉取命令点我查看更多 qbittorrent-nox 镜像标签

docker pull docker.xuanyuan.run/qbittorrentofficial/qbittorrent-nox:<标签>

使用方法:

  • 登录认证方式
  • 免认证方式

DockerHub 原生拉取命令

docker pull qbittorrentofficial/qbittorrent-nox:<标签>

轩辕镜像配置手册

按平台快速找到配置文档

一键安装

一键安装 Docker

Linux Docker 一键安装

AI

用 AI 使用轩辕镜像

agents.md · AI 对话 · 提示词

Docker

登录仓库拉取

登录认证 · 私有仓库

专属域名拉取

免登录 · 高速拉取

Linux

Docker 镜像配置

Windows / Mac

Docker Desktop 配置

MacOS OrbStack

OrbStack 容器

Apple Container

macOS 原生容器

Docker Compose

Compose 项目配置

NAS

群晖

Synology 配置

飞牛

fnOS 镜像配置

绿联

绿联 NAS

威联通

QNAP 配置

极空间

极空间 NAS

Unraid

Unraid NAS

企业仓库

其他仓库

ghcr · Quay · nvcr

Harbor 镜像源

Proxy Repository 对接

Portainer 镜像源

Registries 配置

Nexus 镜像源

Docker Proxy 缓存

开发工具

Dev Containers

VS Code 开发容器

Podman

Podman 配置指南

Singularity / Apptainer

HPC 科学计算容器

Kubernetes

K8s Containerd

Kubernetes · Containerd

K3s

轻量级集群

面板 / 网络

爱快路由

爱快 4.0 · iKuai 镜像加速

宝塔面板

一键配置镜像源

需要其他帮助?请查看我们的 常见问题Docker 镜像访问常见问题解答 或 提交工单

镜像拉取常见问题

功能

版本功能对比

功能对比 · 版本选择

支持的镜像仓库

Docker Hub · GCR · GHCR

专属域名用法

专属域名 · 开启停用 · 多仓库

新手拉取配置

登录 · 专属域名 · 配置

docker search 限制

专属域名 · Hub 搜索

不支持 push

仅支持 pull · 不支持

拉取速度原因

带宽 · 缓存 · 冷热镜像

错误码

402 与流量用尽

402 · 流量包 · 充值

401 认证失败

401 · docker login

manifest unknown

标签错误 · 镜像不存在

410 Gone 排查

410 · Docker 升级

429 限流

免费版 · 专业版 · 企业版 · 请求频率

其他报错

DNS 超时

DNS 解析 · 网络超时

TLS 证书失败

no matching manifest(架构)

docker.sock / daemon

账号

失败是否计费

manifest · blob · 计费

申请开票(企业 / 个人)

开票 · 发票 · 工单

修改登录密码

网站 · 仓库 · 重置

注销账户

工单 · 数据 · 注销

原理

mirrors 不生效

daemon.json · 重启

去掉域名前缀

docker tag · 重命名

指定架构拉取

ARM64 · AMD64 · 多架构

latest 与「最新」

digest · 版本号 · 标签

查看全部问题→

用户好评

来自真实用户的反馈,见证轩辕镜像的优质服务

用户头像

oldzhang

运维工程师

Linux服务器

5

"Docker访问体验非常流畅,大镜像也能快速完成下载。"

轩辕镜像
镜像详情
...
qbittorrentofficial/qbittorrent-nox
定价查看流量套餐与价格
博客Docker 镜像公告与技术博客
专业版 · 高速稳定拉取镜像
高速镜像下载·在线技术支持·99.95% SLA 保障·付费会员免广告
50GB 仅 ¥8/年
专业版 · 高速稳定拉取镜像
50GB 仅 ¥8/年
高速镜像下载·在线技术支持·99.95% SLA 保障·付费会员免广告
用户协议·隐私政策·增值电信业务经营许可证:浙B2-20261007·©2024-2026 源码跳动©2024-2026 杭州源码跳动科技有限公司·商务合作:点击复制邮箱

更多相关 Docker 镜像与资源

以下是 qbittorrentofficial/qbittorrent-nox 相关的常用 Docker 镜像,适用于 不同场景 等不同场景:

  • linuxserver/qbittorrent Docker 镜像说明
  • nevinee/qbittorrent Docker 镜像说明
  • crazymax/qbittorrent Docker 镜像说明(qBittorrent 社区打包(crazymax),适合 BT 下载与 PT 做种)
  • superng6/qbittorrent Docker 镜像说明(Qbittorrent 容器镜像,适合 superng6 维护的 Qbittorrent 工作负载部署)
  • linuxserver/transmission Docker 镜像说明(Transmission BitTorrent 客户端,支持 Web 界面管理)

更多 qbittorrent-nox 镜像推荐

tsubus/qbittorrent-nox logo

tsubus/qbittorrent-nox

tsubus
该Docker镜像提供无图形界面的qBittorrent客户端,支持容器化快速部署,可配置端口、存储卷及用户权限,适用于服务器或无桌面环境下运行BitTorrent下载服务。
3 次收藏10万+ 次下载
5 年前更新
padhihomelab/qbittorrent-nox logo

padhihomelab/qbittorrent-nox

padhihomelab
暂无描述
4 次收藏1万+ 次下载
1 个月前更新
padhihomelab/qbittorrent-nox logo

padhihomelab/qbittorrent-nox

padhihomelab
暂无描述
4 次收藏1万+ 次下载
1 个月前更新

查看更多 qbittorrent-nox 相关镜像