Some images do not use the EXPOSE instruction in a Dockerfile and without it, Traefik do not know how to forward the traffic to the container.
Since seelf rely on the port being defined in a compose file, we could easily add the needed label "traefik.http.services.service_name.loadbalancer.server.port=80" to prevent unreachable services.
Some images do not use the
EXPOSE
instruction in a Dockerfile and without it, Traefik do not know how to forward the traffic to the container.Since seelf rely on the port being defined in a compose file, we could easily add the needed label
"traefik.http.services.service_name.loadbalancer.server.port=80"
to prevent unreachable services.