This is a real noob question, sorry
I have a container running, with the docker ip address of 172.24.0.7 and a service running on port 43090. If I make a curl request to this ip
curl 172.24.0.7:43090/static/auth/login.jsp
I get the expected data
I have set up these labels on the container
labels:
- 'traefik.enable=true'
- "traefik.http.routers.pasoe.rule=PathPrefix(/static/.*
)"
- "traefik.http.routers.pasoe.entrypoints=web"
- "traefik.http.services.pasoe.loadbalancer.server.port=43090"
if I now make a curl request
curl localhost:/static/auth/login.jsp
I get a 404
What am I missing ? Realyl would appreciate some insight