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 +