22 lines
509 B
YAML
22 lines
509 B
YAML
---
|
|
services:
|
|
qbittorrent:
|
|
image: lscr.io/linuxserver/qbittorrent:latest
|
|
container_name: qbittorrentSSD
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Etc/UTC
|
|
- WEBUI_PORT=13461
|
|
- TORRENTING_PORT=6881
|
|
volumes:
|
|
- ./config:/config
|
|
- /home/criz/Medias/Torrents:/downloads #optional
|
|
ports:
|
|
- 13461:13461
|
|
- 6881:6881
|
|
- 6881:6881/udp
|
|
restart: unless-stopped
|
|
labels:
|
|
tsdproxy.enable: "true"
|
|
tsdproxy.name: "torrentSSD"
|