I did some validation and even reviewed all the labes and config.
Also tried to simplify the *.yml using the ones from this blog:
https://containo.us/blog/traefik-2-0-docker-101-fc2893944b9d/
Same issue receiving an 404 page not found simply using the following yml
version: "3.3"
services:
traefik:
image: "traefik:v2.0.1"
command:
- --entrypoints.web.address=:80
- --providers.docker
- --api.insecure
ports:
- "80:80"
- "8080:8080"
volumes:
- "/var/run/docker.sock:/var/run/docker.sock:ro"
my-app:
image: containous/whoami:v1.3.0
# Dashboard (https://localhost:8080)
And logs don't show anything.
so back to square one