You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
1.1 KiB
YAML

3 years ago
# The [Qbittorrent](https://www.qbittorrent.org/) project aims to provide an
# open-source software alternative to µTorrent. qBittorrent is based on the Qt
# toolkit and libtorrent-rasterbar library.
3 years ago
---
version: "2.1"
services:
qbittorrent:
image: ghcr.io/linuxserver/qbittorrent
container_name: qbittorrent
environment:
# for UserID
2 years ago
- PUID=${PUID:-1024}
# for GroupID
3 years ago
- PGID=${PGID:-100}
# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
3 years ago
- TZ=${TZ:-Europe/Amsterdam}
6 months ago
# for changing the port of the web UI, see below for explanation
3 years ago
- WEBUI_PORT=8080
volumes:
# Contains all relevant configuration files.
- ${BASEDIR:-/volume1/docker}/qbittorrent/config:/config
# Location of downloads on disk.
- ${BASEDIR:-/volume1/docker}/qbittorrent/downloads:/downloads
ports:
2 years ago
# WebUI
- 8080:8080
3 years ago
# tcp connection port
- 6881:6881
# udp connection port
- 6881:6881/udp
restart: unless-stopped