From 15bdd2e50dbcf1fe4423e28bbb576a43f39acda3 Mon Sep 17 00:00:00 2001 From: Thierry Schork Date: Fri, 27 Mar 2026 21:18:59 +0100 Subject: [PATCH] Added qbittorrent container. No traefik because of the ingress of UDP need --- containers/qbittorrent/docker-compose.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 containers/qbittorrent/docker-compose.yml diff --git a/containers/qbittorrent/docker-compose.yml b/containers/qbittorrent/docker-compose.yml new file mode 100644 index 0000000..0fa3a27 --- /dev/null +++ b/containers/qbittorrent/docker-compose.yml @@ -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 +