This is an automated archive made by the Lemmit Bot.

The original was posted on /r/selfhosted by /u/Most-Quality-1617 on 2026-03-29 02:53:09+00:00.


https://preview.redd.it/m3au93cmewrg1.png?width=387&format=png&auto=webp&s=e67468365199770d8a788c1e2352d259b133d032

I request help from the wizards!

I have gotten this docker container going. Not my own work! I modified someone else’s yaml file to get my stuff going. I entered in my username and password for PIA. The container is using internet and is assigned to use the tunnel device in Qbit. I’m able to search for Linux ISO’s but after I initiate the download. It appears in the transfer window and acts like its going to download but displays an error on the Status window.

I’m new to docker and trying to comb through the Gluetun documentation to see what I missed. It’s probably simple but I am needing some assistance.

services:
  gluetun:
    cap_add:
      - NET_ADMIN
    devices:
      - /dev/net/tun:/dev/net/tun
    environment:
      - VPN_SERVICE_PROVIDER=private internet access
      - OPENVPN_USER=[pia username]
      - OPENVPN_PASSWORD=[pia password]
      - SERVER_REGION=Netherlands
    image: qmcgaw/gluetun:latest
    ports:
      - '8888:8888'
      - '8889:8889'
      - '6881:6881'
      - 6881:6881/udp
    restart: always
    volumes:
      - /mnt/place/thing/name:/gluetun
  qbittorrent:
    container_name: qbittorrent
    depends_on:
      gluetun:
        condition: service_healthy
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=US West
      - WEBUI_PORT=8889
    image: lscr.io/linuxserver/qbittorrent:latest
    network_mode: service:gluetun
    volumes:
      - /mnt/place/thing/name:/config
      - /mnt/place/thing/name:/data/torrents
version: '3.8'