(01)Install Traefik
Linux
1docker run -d -p 80:80 -p 8080:8080 --name traefik traefik:v3.0Modern reverse proxy and load balancer with auto HTTPS
What is this?
Traefik routes web traffic to your apps and can obtain HTTPS certificates automatically.
Where to create or edit the main configuration — paths below match the setup steps.
traefik.ymlLocation: Static config file or Docker mount
Entry points, providers, and certificates
docker-compose labelsLocation: Compose service labels
Dynamic routing rules (Docker provider)
Step 01
1docker run -d -p 80:80 -p 8080:8080 --name traefik traefik:v3.0Step 02
1# traefik.yml + docker labels for auto-discovery2# Dashboard: http://localhost:8080Step 03
1curl http://localhost:8080/dashboard/