Hey all, I subscribed to PIA last night, so on a whim I’m trying to figure out how I can get JUST my qbittorrent container to go through it without all the traffic on my NAS being routed through it.
Here’s the docker-compose snippet:
qbittorrent:
    image: ghcr.io/linuxserver/qbittorrent
    container_name: qbittorrent
    cap_add:
      - NET_ADMIN
    devices:
      - /dev/net/tun:/dev/net/tun
    environment:
      - PUID=${PUID}
      - PGID=${PGID}
      - TZ=${TZ}
      - UMASK_SET=022
      - WEBUI_PORT=8085
      - DOCKER_MODS=taisun/config-mods:pia
      - PIAUSER=${PIA_USER}
      - PIAPASS=${PIA_PASSWORD}
      - PIAENDPOINT=${PIA_SERVER}
    volumes:
      - ./qbittorrent:/config
      - /volume1/downloads:/downloads
      - /volume1/media:/media
    ports:
      - 51413:51413
      - 51413:51413/udp
      - 8085:8085
    restart: unless-stopped
Everything seems fine, but when I go to look at the logs, I see an endless amount of blocks like this:
2023-06-19 16:59:39 RESOLVE: Cannot resolve host address: us-newyorkcity.privateinternetaccess.com:1198 (Name has no usable address)
2023-06-19 16:59:39 RESOLVE: Cannot resolve host address: us-newyorkcity.privateinternetaccess.com:1198 (Name has no usable address)
2023-06-19 16:59:39 Could not determine IPv4/IPv6 protocol
2023-06-19 16:59:39 SIGUSR1[soft,Could not determine IPv4/IPv6 protocol] received, process restarting
Furthermore, running:
docker exec qbittorrent curl -sL ifconfig.me
shows me my WAN IP.
The above was using US New York City as the endpoint, but I get basically the same if I use US Atlanta.
Hopefully the issue is something pretty simple, can anyone advise?
Thanks
