goto logs

first time loggin user : Password:

we are in

change web ui password

version: "2.1"
services:
  qbittorrent:
    image: lscr.io/linuxserver/qbittorrent
    container_name: qbittorrent
    environment:
      - PUID=1000 # This is my standard user ID
      - PGID=100
      - TZ=Europe/Lisbon # This is my Timezone
      - WEBUI_PORT=4040
    volumes:
      - /Baseshare/Docker/Data//qbittorrent/config:/config # In my case /appdata is a symlink to an external drive
      - /Baseshare/downloads:/downloads # In my case /downloads is a symlink to an external drive
    ports:
      - 6881:6881      # Remember to make a portforward on the Router to this host:port
      - 6881:6881/udp  # Remember to make a portforward on the Router to this host:port 
      - 4040:4040
    restart: unless-stopped