
ghostserverd/qbittorrentdocker-qbittorrent-ghost是一个基于linuxserver/qbittorrent的Docker配置包装器镜像。该镜像旨在简化qBittorrent(一款流行的BitTorrent客户端)的部署与配置管理过程,通过集成配置封装逻辑,帮助用户更便捷地设置和运行qBittorrent服务,减少手动配置的复杂度。
通过docker run命令快速启动容器:
bashdocker run -d \ --name=qbittorrent-ghost \ -p 8080:8080 \ # Web UI访问端口 -p 6881:6881 \ # BT协议TCP监听端口 -p 6881:6881/udp \ # BT协议UDP监听端口 -v /本地路径/config:/config \ # 配置文件持久化目录 -v /本地路径/downloads:/downloads \ # 下载文件存储目录 --restart unless-stopped \ [镜像名称]:[标签] # 替换为实际镜像名称和标签
该镜像支持通过环境变量调整基础配置(具体变量需参考官方镜像文档,以下为常见示例):
| 环境变量 | 说明 | 默认值 |
|---|---|---|
| PUID | 运行qBittorrent的用户ID | 1000 |
| PGID | 运行qBittorrent的用户组ID | 1000 |
| TZ | 时区设置 | UTC |
| WEBUI_PORT | Web UI访问端口 | 8080 |
| 本地路径 | 容器路径 | 说明 |
|---|---|---|
| /path/to/config | /config | 存储qBittorrent配置文件,需持久化挂载 |
| /path/to/downloads | /downloads | 存储下载文件,根据需求挂载本地目录 |
yamlversion: '3' services: qbittorrent-ghost: image: [镜像名称]:[标签] # 替换为实际镜像信息 container_name: qbittorrent-ghost ports: - "8080:8080" - "6881:6881" - "6881:6881/udp" volumes: - /本地/config路径:/config - /本地/downloads路径:/downloads environment: - PUID=1000 - PGID=1000 - TZ=Asia/Shanghai - WEBUI_PORT=8080 restart: unless-stopped
/config目录下的qBittorrent.conf文件,修改后重启容器生效。




manifest unknown 错误
TLS 证书验证失败
DNS 解析超时
410 错误:版本过低
402 错误:流量耗尽
身份认证失败错误
429 限流错误
凭证保存错误
来自真实用户的反馈,见证轩辕镜像的优质服务