Added qbittorrent container.

No traefik because of the ingress of UDP need
This commit is contained in:
2026-03-27 21:18:59 +01:00
parent 9155a817f2
commit 15bdd2e50d

View File

@@ -0,0 +1,21 @@
services:
qbittorrent:
image: lscr.io/linuxserver/qbittorrent:latest
container_name: qbittorrent
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Zurich
- WEBUI_PORT=8080
- TORRENTING_PORT=6881
volumes:
- /srv/qbittorrent/appdata:/config
- /srv/qbittorrent/downloads:/downloads #optional
ports:
- 8080:8080
- 6881:6881
- 6881:6881/udp
networks:
- proxy
restart: unless-stopped