docker-qbittorrent-nox/manual_build
2023-01-06 19:31:07 +08:00
..
.env Import project 2022-12-10 14:30:20 +08:00
docker-compose.yml Support changing UID, GID 2023-01-03 01:57:46 +08:00
Dockerfile Build libtorrent-rasterbar ourselves 2023-01-06 19:31:07 +08:00
entrypoint.sh Suppress meaningless warning 2023-01-03 03:00:15 +08:00
Readme.md Add missing path separator 2023-01-06 19:31:07 +08:00

Manually Build qBittorrent-nox Docker Image

This Dockerfile allows you to build a Docker Image containing qBittorrent-nox

Prerequisites

In order to build/run this image you'll 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 significantly ease the process: https://docs.docker.com/compose/install/

Building Docker Image

  • If you are using Docker (not Docker Compose) then run the following commands in this folder:

    export \
      QBT_VERSION=devel
    docker build \
      --build-arg QBT_VERSION \
      -t qbittorrent-nox:"$QBT_VERSION" \
      .
    
  • If you are using Docker Compose then you should edit .env file first. You can find an explanation of the variables in the following Parameters section.
    Then run the following commands in this folder:

    docker compose build \
      --build-arg QBT_VERSION
    

Parameters

Environment variables

  • QBT_EULA
    This environment variable defines whether you accept the end-user license agreement (EULA) of qBittorrent.
    Put accept only if you understand and accepted the EULA. You can find the EULA here.
  • QBT_VERSION
    This environment variable specifies the version of qBittorrent-nox to be built.
    For example, 4.4.0 is a valid entry. You can find all tagged versions here.
    Or you can put devel to build the latest development version.
  • QBT_WEBUI_PORT
    This environment variable sets the port number which qBittorrent WebUI will be binded to.

Volumes

There are some paths involved:

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

Running container

  • Using Docker (not Docker Compose), simply run:

    export \
      QBT_EULA=<put_accept_here> \
      QBT_VERSION=devel \
      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_EULA \
      -e QBT_WEBUI_PORT \
      -e TZ=UTC \
      -p "$QBT_WEBUI_PORT":"$QBT_WEBUI_PORT"/tcp \
      -p 6881:6881/tcp \
      -p 6881:6881/udp \
      -v "$QBT_CONFIG_PATH":/config \
      -v "$QBT_DOWNLOADS_PATH":/downloads \
      qbittorrent-nox:"$QBT_VERSION"
    
  • Using Docker Compose:

    docker compose up
    
  • A few notes:

    • By default the timezone in the container is set to UTC. You can set the environment variable TZ to your preferred value.
    • You can change the User ID (UID) and Group ID (GID) of the qbittorrent-nox process by setting environment variables PUID and PGID respectively. By default they are both set to 1000. Note that you will also need to remove --read-only flag (when using Docker) or set read_only: false (when using Docker Compose) as they are incompatible with it.
  • Then you can login to qBittorrent-nox at: http://127.0.0.1:8080
    The default username/password is: admin/adminadmin.
    Don't forget to change the login password to something else!
    You can change it at 'Tools' menu -> 'Options...' -> 'Web UI' tab -> 'Authentication'

Stopping container

  • Using Docker (not Docker Compose):

    docker stop qbittorrent-nox
    
  • Using Docker Compose:

    docker compose down