diff --git a/docker-compose.yml b/docker-compose.yml index ac7567c..b08a13e 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -9,4 +9,21 @@ services: environment: - SECRET_ENCRYPTION_KEY=a5768cf048956f4da12fd0773b95f8960d571cfd2889c5c428ca9a4c8016bb36 ports: - - '7575:7575' \ No newline at end of file + - '7575:7575' + qbittorrent: + image: lscr.io/linuxserver/qbittorrent:latest + container_name: qbittorrent + environment: + - PUID=1000 + - PGID=1000 + - TZ=Etc/UTC + - WEBUI_PORT=8080 + - TORRENTING_PORT=6881 + volumes: + - /mnt/hdd/appdata:/config + - mnt/hdd/downloads:/downloads #optional + ports: + - 8080:8080 + - 6881:6881 + - 6881:6881/udp + restart: unless-stopped \ No newline at end of file