项目作者: crazy-max

项目描述 :
qBittorrent Docker image based on Alpine Linux
高级语言: Dockerfile
项目地址: git://github.com/crazy-max/docker-qbittorrent.git
创建时间: 2019-10-26T18:32:21Z
项目社区:https://github.com/crazy-max/docker-qbittorrent

开源协议:MIT License

下载



Latest Version
Build Status
Docker Stars
Docker Pulls

Become a sponsor
Donate Paypal

About

qBittorrent Docker image.

[!TIP]
Want to be notified of new releases? Check out 🔔 Diun (Docker Image Update Notifier)
project!


Features

Build locally

  1. git clone https://github.com/crazy-max/docker-qbittorrent.git
  2. cd docker-qbittorrent
  3. # Build image and output to docker (default)
  4. docker buildx bake
  5. # Build multi-platform image
  6. docker buildx bake image-all

Image

Registry Image
Docker Hub crazymax/qbittorrent
GitHub Container Registry ghcr.io/crazy-max/qbittorrent

Following platforms for this image are available:

  1. $ docker buildx imagetools inspect crazymax/qbittorrent --format "{{json .Manifest}}" | \
  2. jq -r '.manifests[] | select(.platform.os != null and .platform.os != "unknown") | .platform | "\(.os)/\(.architecture)\(if .variant then "/" + .variant else "" end)"'
  3. linux/amd64
  4. linux/arm/v6
  5. linux/arm/v7
  6. linux/arm64

Environment variables

  • TZ: Timezone assigned to the container (default UTC)
  • PUID: qBittorrent user id (default 1000)
  • PGID: qBittorrent group id (default 1000)
  • WAN_IP: Public IP address reported to the tracker (default auto resolved with dig +short myip.opendns.com @resolver1.opendns.com)
  • WEBUI_PORT: WebUI port to be used (default 8080)
  • ALT_WEBUI: Enable alternative WebUI located in /data/webui (default false)

Volumes

  • /data: qBittorrent config, downloads, temp, torrents, watch, webui…

:warning: Note that the volumes should be owned by the user/group with the specified PUID and PGID.
If you don’t give the volume correct permissions, the container may not start.

Ports

  • 6881: DHT port
  • 8080: qBittorrent HTTP port

Usage

Docker Compose

Docker compose is the recommended way to run this image. You can use the following
compose template, then run the container:

  1. $ docker compose up -d
  2. $ docker compose logs -f

Command line

You can also use the following minimal command:

  1. $ docker run -d --name qbittorrent \
  2. --ulimit nproc=65535 \
  3. --ulimit nofile=32000:40000 \
  4. -p 6881:6881/tcp \
  5. -p 6881:6881/udp \
  6. -p 8080:8080 \
  7. -v $(pwd)/data:/data \
  8. crazymax/qbittorrent:latest

Upgrade

Recreate the container whenever I push an update:

  1. docker compose pull
  2. docker compose up -d

Notes

qBittorrent Web API

qBittorrent Web API can be used within
this image using curl.

  1. $ docker compose exec qbittorrent curl --fail http://127.0.0.1:8080/api/v2/app/version
  2. v4.1.8

Change username and password

You can change the default username admin and password adminadmin through the API or WebUI.

  1. docker compose exec qbittorrent curl --fail -X POST \
  2. -d 'json={"web_ui_username":"myuser","web_ui_password":"mypassword"}' \
  3. http://127.0.0.1:8080/api/v2/app/setPreferences

Watch torrents

You can configure the monitored folders on the qBittorrent interface:

Or through the API:

  1. docker compose exec qbittorrent curl --fail -X POST \
  2. -d 'json={"scan_dirs":{"/data/watch": 1}}' \
  3. http://127.0.0.1:8080/api/v2/app/setPreferences

Contributing

Want to contribute? Awesome! The most basic way to show your support is to star
the project, or to raise issues. You can also support this project by becoming a sponsor on GitHub
or by making a PayPal donation to ensure this
journey continues indefinitely!

Thanks again for your support, it is much appreciated! :pray:

License

MIT. See LICENSE for more details.