Gateway Time out with Traefik 2

Hi All,

We are running our production environment on docker swarm and we are using traefik 2.2 version. But from last one week we are seeing gateway time out when we access applications. All the docker services are running as expected but we are not able to access the UI. Can someone suggest on this

Are the containers on multiple networks without setting a network at either of:

1 Like

This helped so much, thank you!

For others: it is good to denote the docker network for the traefik container to use (--providers.docker.network=docker_external), but for large deployments it is also good to do the same for any containers that have more than one network

    labels:
      - traefik.enable=true
      - traefik.docker.network=docker_external
      - ...