
如果你使用 DeepSeek、元宝 AI、Copilot、ChatGPT 等 AI 工具,协助配置轩辕镜像、编写 docker pull 命令、修改 Docker Compose 镜像地址、配置镜像加速、排查镜像拉取失败、分析报错日志等问题,请先让 AI 阅读并遵守轩辕镜像的规则文档。
只需在 AI 对话中先发送下面这句话即可:
请先完整阅读并严格遵守以下文档中的全部规则与要求:
https://xuanyuan.cloud/agents.md
在未充分阅读并理解该文档前,不要生成任何命令、配置、修改建议、故障排查方案或技术回答。后续所有输出都必须严格以该文档中的规范为最高优先级执行。查看 agents.md 用法指南与完整示范。国内用户首推 元宝 AI、DeepSeek 的深度思考模式,不推荐豆包 AI;Cursor 等编辑器可在对话 @ 该链接,或加入 User Rules。 若 AI 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。
https://raw.githubusercontent.com/emmercm/docker-qbittorrent/assets/qbittorrent.png]([***]
Headless qBittorrent client with remote web interface.
| Tags | Size |
|---|---|
5.2.1, 5.2.1-alpine, 5.2, 5.2-alpine, 5, 5-alpine, latest | |
5.1.4, 5.1.4-alpine, 5.1, 5.1-alpine | |
5.0.5, 5.0.5-alpine, 5.0, 5.0-alpine | |
4.6.7, 4.6.7-alpine, 4.6, 4.6-alpine, 4, 4-alpine | |
⚠️ 4.5.5, 4.5.5-alpine, 4.5, 4.5-alpine | |
⚠️ 4.4.5, 4.4.5-alpine, 4.4, 4.4-alpine | |
⚠️ 4.3.9, 4.3.9-alpine, 4.3, 4.3-alpine | |
⚠️ 4.2.5, 4.2.5-alpine, 4.2, 4.2-alpine | |
⚠️ 4.1.9, 4.1.9-alpine, 4.1, 4.1-alpine | |
⚠️ 4.0.4, 4.0.4-alpine, 4.0, 4.0-alpine | |
⚠️ 3.3.16, 3.3.16-alpine, 3.3, 3.3-alpine, 3, 3-alpine |
From [***]
An advanced and multi-platform BitTorrent client with a nice Qt user interface as well as a Web UI for remote control and an integrated search engine. qBittorrent aims to meet the needs of most users while using as little CPU and memory as possible.
The qBittorrent project aims to provide an open-source software alternative to µTorrent.
qBittorrent is released uner the https://github.com/qbittorrent/qBittorrent/blob/master/COPYING to allow free use.
These images are built with qbittorrent-nox (no X server), a version of qBittorrent with the GUI disabled that is controlled via its built-in web UI.
The images do not require any external Docker networks, volumes, environment variables, or arguments and can be run with just:
bashdocker run \ --publish 8080:8080 \ --publish 6881:6881/tcp \ --publish 6881:6881/udp \ emmercm/qbittorrent
And accessed through the web UI at http://localhost:8080 with the https://github.com/qbittorrent/qBittorrent/wiki/Web-UI-password-locked-on-qBittorrent-NO-X-%28qbittorrent-nox%29 username admin and password adminadmin.
Due to the ephemeral nature of Docker containers these images provide a number of optional volume mounts to persist data outside of the container:
/config: the qBittorrent config directory containing qBittorrent.conf/downloads: the default download location/incomplete: the default incomplete download location/data: the qBittorrent folder that contains fast resume data, .torrent files, logs, and other data.Usage:
bashmkdir config downloads incomplete docker run \ --publish 8080:8080 \ --publish 6881:6881/tcp \ --publish 6881:6881/udp \ --volume "$PWD/config:/config" \ --volume "$PWD/data:/data" \ --volume "$PWD/downloads:/downloads" \ --volume "$PWD/incomplete:/incomplete" \ emmercm/qbittorrent
To change the timezone of the container set the TZ environment variable. The full list of available options can be found on ***.
docker-compose can help with defining the docker run config in a repeatable way rather than ensuring you always pass the same CLI arguments.
Here's an example docker-compose.yml config:
yamlversion: "3" services: qbittorrent: image: emmercm/qbittorrent:latest restart: unless-stopped environment: - TZ=America/New_York ports: - 8080:8080 - 6881:6881/tcp - 6881:6881/udp volumes: - ./config:/config - ./data:/data - ./downloads:/downloads - ./incomplete:/incomplete
There are a number of *** images such as Julio Gutierrez's https://hub.docker.com/r/bubuntux/nord*** that let you route network traffic from the qBittorrent container through the *** of your choice.
Here's an example docker-compose.yml config:
yamlversion: "3" services: vpn: image: bubuntux/nordvpn:openvpn restart: unless-stopped cap_add: - NET_ADMIN devices: - /dev/net/tun environment: - USER=user@email.com - PASS='pas$word' - COUNTRY=United_States - PROTOCOL=UDP - CATEGORY=P2P # Your local network, potentially 192.168.0.0/24 or something else - NETWORK=192.168.1.0/24 - OPENVPN_OPTS='--pull-filter ignore "ping-restart" --ping-exit 180' - TZ=America/New_York # Ports from qBittorrent ports: - 8080:8080 - 6881:6881/tcp - 6881:6881/udp qbittorrent: image: emmercm/qbittorrent:latest restart: unless-stopped network_mode: service:vpn environment: - TZ=America/New_York volumes: - ./config:/config - ./data:/data - ./downloads:/downloads - ./incomplete:/incomplete
All images are based on https://hub.docker.com/r/emmercm/libtorrent and therefore inherit those images' OS version, which is kept as up to date as possible.
emmercm/qbittorrent:<version>-alpineThe default image variant, these images are based on https://hub.docker.com/_/alpine which is designed to be "small, simple, and secure." This variant is recommended for when final image size is a concern.
This project is under the https://github.com/emmercm/docker-qbittorrent/blob/master/LICENSE to allow free use while ensuring it stays open.
您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。




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