Skip to main content

Installation

qBittorrentThe service can be installed by followingthrough the Portainer guideweb forinterface. 

Learn about creating a new stack.

Learn about configuring a

Docker stacksCompose

and then use

Use the following Docker Compose code to runinstall thisthe app:service:

---
services:
  qbittorrent:
    image: lscr.io/linuxserver/qbittorrent:latest
    container_name: qbittorrent
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=America/Vancouver
      - WEBUI_PORT=9191
      - TORRENTING_PORT=6881
    volumes:
      # Persistent Data 
      - /srv/qbittorrent:/config

      # Download Folders
      - /mnt/downloads:/downloads/
    restart: unless-stopped