22 lines
506 B
YAML
22 lines
506 B
YAML
---
|
|
services:
|
|
qbittorrent:
|
|
image: lscr.io/linuxserver/qbittorrent:latest
|
|
container_name: qbittorrentHDD
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Etc/UTC
|
|
- WEBUI_PORT=13462
|
|
- TORRENTING_PORT=6882
|
|
volumes:
|
|
- ./config:/config
|
|
- /mnt/moviesHDD/torrents:/downloads #optional
|
|
ports:
|
|
- 13462:13462
|
|
- 6882:6882
|
|
- 6882:6882/udp
|
|
restart: unless-stopped
|
|
labels:
|
|
tsdproxy.enable: "true"
|
|
tsdproxy.name: "torrentHDD"
|