
emmercm/qbittorrent, 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 default 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 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: ***: image: bubuntux/nord***:open*** restart: unless-stopped cap_add: - NET_ADMIN devices: - /dev/net/tun environment: - USER=*** - 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 - OPEN***_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:*** environment: - TZ=America/New_York volumes: - ./config:/config - ./data:/data - ./downloads:/downloads - ./incomplete:/incomplete
All images are based on 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 the alpine official image 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 GNU Generic Public License v3 to allow free use while ensuring it stays open.





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