Setup:

Debian running podman. Containers and compose files are managed with Dockge. qBit and Gluetun are on a single compose file and all qBit traffic is routed through Gluetun.

qBit seems to starts first before Gluetun is fully set up and qBit doesn’t see the open port. Every time I start them together, I have to manually restart qBit again once Gluetun is ready. Once it’s restarted, it shows as open and connected again.

I tried looking for ways to delay startup in a compose file but I didn’t get any results.

Is there a solution to this?

https://pastebin.com/kgqt8aJ7

    • @jws_shadotakOP
      link
      English
      13 months ago

      I added a pastebin of the compose file

      I tried adding depends_on to the qBit, but I got the same result. I think it’s already dependent on gluetun for the network_mode

    • @jws_shadotakOP
      link
      English
      13 months ago

      I added this to my qBit section:

          depends_on:
            gluetun:
              condition: service_healthy
              restart: true
      

      It caused an error with gluetun somehow

      • @[email protected]
        link
        fedilink
        English
        13 months ago

        You only need depends_on: gluetun. Did you observe the logs at boot? Do they still show that qbit starts first?

        • @jws_shadotakOP
          link
          English
          13 months ago

          qBit starts second but Gluetun isn’t finished and doesn’t open the port for another few seconds, causing this problem

  • Bobby Turkalino
    link
    fedilink
    English
    23 months ago

    See if your qBit container supports mounting scripts to be run at startup and just throw in a sleep 60 or whatever

    • @jws_shadotakOP
      link
      English
      13 months ago

      I don’t see support for it in the Linuxserver documents

  • @[email protected]
    link
    fedilink
    English
    13 months ago

    Why do you think it’s firewalled?

    Does the web gui work, and just the torrents are failing?

    I assume you didn’t forget to open the port on the machine. I made that mistake and it took forever to figure out

    • @jws_shadotakOP
      link
      English
      13 months ago

      Torrents are stalling and it’s only seeding about 600 KB/s. The icon at the bottom shows a little flame and the hover text says “firewalled”.

      Restarting qBit through the Dockge web terminal turns that flame icon into a globe and it starts finding hundreds of DHT networks. Uploads nearly max out my upload bandwidth.

  • @HumanPerson
    link
    English
    13 months ago

    I have had a similar issue I think. Try killing and removing the containers (docker kill and docker RM) and then start it. Iirc that was what fixed it for me.

    • @jws_shadotakOP
      link
      English
      13 months ago

      This happens every time I start them together, though. This is just a temporary fix

    • @jws_shadotakOP
      link
      English
      13 months ago

      I added this to my qBit section:

          depends_on:
            gluetun:
              condition: service_healthy
              restart: true
      

      It caused an error with gluetun somehow