32 lines
1.1 KiB
YAML
32 lines
1.1 KiB
YAML
###########################################################################
|
|
###########################################################################
|
|
##
|
|
## Docker Compose File: qBittorrent (LinuxServer.io)
|
|
## Function: Torrent Download Client
|
|
##
|
|
## Documentation: https://docs.linuxserver.io/images/docker-qbittorrent
|
|
##
|
|
###########################################################################
|
|
###########################################################################
|
|
services:
|
|
qbittorrent:
|
|
image: lscr.io/linuxserver/qbittorrent:latest
|
|
container_name: qbittorrent
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ${FOLDER_FOR_DATA:?err}/qbittorrent:/config
|
|
- ${FOLDER_FOR_MEDIA:?err}:/data
|
|
environment:
|
|
- PUID=${PUID:?err}
|
|
- PGID=${PGID:?err}
|
|
- UMASK=${UMASK:?err}
|
|
- TZ=${TIMEZONE:?err}
|
|
- WEBUI_PORT=${WEBUI_PORT_QBITTORRENT:?err}
|
|
- DOCKER_MODS=ghcr.io/themepark-dev/theme.park:qbittorrent
|
|
- TP_THEME=${TP_THEME:?err}
|
|
|
|
## Do Not Change Network for qBittorrent
|
|
## qBittorrent MUST always use a VPN / Secure Internet connection
|
|
|
|
network_mode: "container:gluetun"
|