lowfab

Members
  • Posts

    4
  • Joined

  • Last visited

Posts posted by lowfab

  1. Hello, Thank you for this beautiful work. Is it possible to run 2 qBittorrentVPN containers on the same docker server modifying the ports of the 2nd instance. I can't do it the 2nd does not work properly (web interface accessible but qbittorrent not accessible when download active on the 1st)?

  2. i make this, but it's not perfect. The second services (dqbtx) does not work well. The web interface is faulty. Do you have another solution?

     

    version: '3.7'
    services:
      dqbt:
        image: binhex/arch-qbittorrentvpn:latest
        container_name: dqbt
        cap_add:
          - NET_ADMIN
        ports:
          - 6881:6881
          - 6881:6881/udp
          - 8282:8282
        environment:
          - PUID=1000
          - PGID=1000
          - VPN_ENABLED=yes
          - VPN_PROV=airvpn
          - ENABLE_PRIVOXY=no
          - LAN_NETWORK=192.168.1.0/24
          - NAME_SERVERS=209.222.18.222,84.200.69.80,37.235.1.174,1.1.1.1,209.222.18.218,37.235.1.177,84.200.70.40,1.0.0.1
          - WEBUI_PORT=8282
          - ADDITIONNAL_PORTS=1234
          - UMASK=000
          - DEBUG=false
        volumes:
          - /home/lowfab/dqbtconfig:/config
          - /etc/localtime:/etc/localtime:ro
          - /home/lowfab/dqbt:/dqbt
      dqbtx:
        image: binhex/arch-qbittorrentvpn:latest
        container_name: dqbtx
        cap_add:
          - NET_ADMIN
        ports:
          - 8090:8080
          - 6891:6881
          - 6891:6881/udp
          - 8128:8118
          - 8383:8383
        environment:
          - PUID=1000
          - PGID=1000
          - VPN_ENABLED=yes
          - VPN_PROV=airvpn
          - ENABLE_PRIVOXY=no
          - LAN_NETWORK=192.168.1.0/24
          - NAME_SERVERS=209.222.18.222,84.200.69.80,37.235.1.174,1.1.1.1,209.222.18.218,37.235.1.177,84.200.70.40,1.0.0.1
          - WEBUI_PORT=8383
          - ADDITIONNAL_PORTS=1244
          - UMASK=000
          - DEBUG=false
        volumes:
          - /home/lowfab/dqbtconfig2:/config
          - /etc/localtime:/etc/localtime:ro
          - /home/lowfab/dqbt2:/dqbt

  3. Hello, I cannot access the web interface when I change the WEBUI_PORT.

     

    with :

    docker run -d \
        --cap-add=NET_ADMIN \
        -p 6881:6881 \
        -p 6881:6881/udp \
        -p 8080:8090 \
        -p 8118:8118 \
        --name=qbittorrentvpn \
        -v /home/torrent/download:/download \
        -v /home/torrent/config:/config \
        -v /etc/localtime:/etc/localtime:ro \
        -e VPN_ENABLED=yes \
        -e VPN_PROV=airvpn \
        -e ENABLE_PRIVOXY=no \
        -e LAN_NETWORK=192.168.1.0/24 \
        -e NAME_SERVERS=209.222.18.222,84.200.69.80,37.235.1.174,1.1.1.1,209.222.18.218,37.235.1.177,84.200.70.40,1.0.0.1 \
        -e ADDITIONAL_PORTS=1234 \
        -e DEBUG=false \
        -e WEBUI_PORT=8090 \
        -e UMASK=000 \
        -e PUID=1001 \
        -e PGID=1001 \
        binhex/arch-qbittorrentvpn

     

    docker ps

    CONTAINER ID        IMAGE                        COMMAND                  CREATED             STATUS              PORTS                                                                                                      NAMES
    12aa8f2ec4cd        binhex/arch-qbittorrentvpn   "/usr/bin/tini -- /b…"   4 minutes ago       Up 13 seconds       0.0.0.0:6881->6881/tcp, 0.0.0.0:8118->8118/tcp, 0.0.0.0:6881->6881/udp, 8080/tcp, 0.0.0.0:8080->8090/tcp   qbittorrentvpn

     

    qBittorrent.conf

    [AutoRun]
    enabled=false
    program=

    [Preferences]
    Connection\PortRangeMin=6881
    Connection\UPnP=false
    General\Locale=en
    General\UseRandomPort=false
    Queueing\QueueingEnabled=false
    WebUI\Address=*
    WebUI\CSRFProtection=false
    WebUI\LocalHostAuth=false
    WebUI\Port=8090
    WebUI\ServerDomains=*
    WebUI\UseUPnP=false

     

    Have you an idea ?