mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-10 13:10:31 +00:00
33 lines
1.1 KiB
YAML
33 lines
1.1 KiB
YAML
# 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.
|
|
|
|
---
|
|
version: "2.1"
|
|
services:
|
|
qbittorrent:
|
|
image: ghcr.io/linuxserver/qbittorrent
|
|
container_name: qbittorrent
|
|
environment:
|
|
# for UserID
|
|
- PUID=${PUID:-1024}
|
|
# for GroupID
|
|
- PGID=${PGID:-100}
|
|
# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
|
|
- TZ=${TZ:-Europe/Amsterdam}
|
|
# for changing the port of the web UI, see below for explanation
|
|
- 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:
|
|
# WebUI
|
|
- 8080:8080
|
|
# tcp connection port
|
|
- 6881:6881
|
|
# udp connection port
|
|
- 6881:6881/udp
|
|
restart: unless-stopped
|