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

  • Lem453
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    8 months ago

    I use only the default depends_on along with network mode in my setup and it works but your glutun might be taking longer to load so something like this might help.

    You definitely need some kind of depends on thought:

    https://docs.docker.com/compose/startup-order/

    • jws_shadotak@sh.itjust.worksOP
      link
      fedilink
      English
      arrow-up
      1
      ·
      8 months ago

      I added this to my qBit section:

          depends_on:
            gluetun:
              condition: service_healthy
              restart: true
      

      It caused an error with gluetun somehow