wiki/docs/portainer-stacks/qbittorrent.md
Sthope eb1212bbee
All checks were successful
continuous-integration/drone/push Build is passing
first commit
2022-05-01 19:06:40 +02:00

694 B

Portainer Stack:

version: "3.8"
services:
  qbittorrent:
    image: linuxserver/qbittorrent:${tag-latest}
    container_name: qbittorrent
    network_mode: ${NET-bridge}
    volumes:
      - /qbittorrent:/config
      - /downloads:/downloads
    ports:
      - "8080:8080"
      - "6881:6881"
      - "6881:6881/udp"
    restart: ${RST-always}
    environment:
      - PUID=${PUID-1000}
      - PGID=${PGID-1000}
      - TZ=${TZ-Europe/Amsterdam}
      - UMASK=022
      - WEBUI_PORT=8080
    labels:
      - com.centurylinklabs.watchtower.enable=${AutoUpdate-true}

Environments:

tag=latest
RST=unless-stopped
NET=bridge
PUID=1000
PGID=1000
TZ=Europe/Lisbon
AutoUpdate=true