π Using Traefik V3 as a Reverse Proxy for a docker compose server
I implemented Traefik as a reverse proxy to manage multiple services in a docker compose server. This post explains how to set up Traefik and configure it.
What is traefik?
Traefik is a modern HTTP reverse proxy and load balancer that makes deploying microservices easy. Traefik integrates with your existing infrastructure components (Docker, Swarm mode, Kubernetes, etc.) and configures itself automatically and dynamically.
I use it for my docker compose server, a server on which I host a variety of services. Traefik allows me to manage these services through a single entry point and provides me with a lot of flexibility in terms of routing and load balancing.
It has some benefits over other reverse proxies. For example, it can be managed by docker compose labels, which makes it very easy to use in a docker compose server. It also has a web interface that allows you to see the status of your services and the routing rules that are in place.
Prerequisites
Before you start, you need to have docker and docker-compose installed on your server. You also need to have a domain name that you can point to your server.
A basic knowledge about networking and reverse proxies is also helpful, however I will try to explain everything as clearly as possible.
Setting up Traefik
The first step is to create a docker-compose file for Traefik. Here is an example of a basic Traefik docker-compose file:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
services:
traefik:
image: traefik:v3.3.3
restart: always # To make sure that Traefik restarts in all cases
command:
- --configFile=/etc/traefik/traefik.yml # Path to the config file (inside the container)
ports:
- "80:80"
- "443:443"
volumes:
- /var/run/docker.sock:/var/run/docker.sock # Docker socket
- ./acme.json:/acme.json # File to store SSL certificates
- ./traefik.yml/:/etc/traefik/traefik.yml # Config file, mapped to the configFile path
container_name: traefik
networks:
- traefik # Network for traefik
labels:
- "traefik.enable=true" # Enable traefik for this container
- "traefik.http.routers.api.rule=Host(`traefik.example.com`)" # Set up a rule for the web interface, make sure to change the domain name and set up the DNS records!
- "traefik.http.routers.api.service=api@internal" # Set up a service for the web interface
- "traefik.http.routers.api.entrypoints=websecure" # Set up an entry point, which is the port that this service listens on
- "traefik.http.routers.api.tls=true" # Enable TLS for the web interface
- "traefik.http.routers.api.tls.certresolver=myresolver" # Use the certificate resolver
networks:
traefik:
external: true # Use an external network
Make sure to edit the URL in line 19 and set the DNS record to this server!
After that we need a basic traefik.yml config file. Located on your server at ./conf/traefik.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Entry points are the ports that Traefik listens on
entryPoints:
web:
address: ":80" # HTTP port
websecure:
address: ":443" # HTTPS port
# certificatesResolvers are used to generate SSL certificates
certificatesResolvers: # Certificate resolver
myresolver:
acme:
email: <EMAIL>
storage: acme.json
httpChallenge:
entryPoint: web
# This enables the webinterface and API for Traefik
api: # Web interface enable
dashboard: true
insecure: true
# Providers are used to configure the dynamic configuration of Traefik
providers: # Providers
docker: # Docker provider for dynamic configuration inside docker compose files
endpoint: "unix:///var/run/docker.sock"
exposedByDefault: false
file: # File provider for static
filename: /etc/traefik/traefik.yml
watch: true
Make sure to change the email inside the yaml file!
When you have set up the docker-compose file and the config file, you need to create an acme.json file. This file is used to store the SSL certificates that Traefik will generate. You can create an empty file with the following command:
1
2
touch acme.json
chmod 600 acme.json
Now we just need to create the network for traefik. You can do this with the following command:
1
docker network create traefik
Now you can start Traefik with the following command:
1
docker-compose up -d
If you changed your DNS records to point to your server, you should now be able to access the Traefik web interface by going to https://traefik.example.com
. You should see a dashboard with information about the services that are running on your server.
Creating a new service
Now that Traefik is set up, you can start adding services to your docker compose server. Here is an example of a docker-compose file for a simple service:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
services:
whoami:
image: containous/whoami
networks:
- traefik
labels:
- "traefik.enable=true" # This enables Traefik
- "traefik.http.routers.whoami.rule=Host(`whoami.example.com`)" # Determine what URL to use
- "traefik.http.routers.whoami.entrypoints=websecure" # Determine what entrypoint to use, and this what port
- "traefik.http.services.whoami.loadbalancer.server.port=80" # Determine which port from the service to expose through Traefik
- "traefik.http.routers.whoami.service=whoami" # Determine what service to use
- "traefik.http.routers.whoami.tls.certresolver=myresolver" # Determine the certificate resolver to use
# You always need to add the traefik network to the service
networks:
traefik:
external: true
Make sure to edit the URL in line 8 and set the DNS record to this server!
If you start this docker-compose file, Traefik will automatically detect the service and set up a routing rule for it. You should now be able to access the service by going to https://whoami.example.com
. It handles the SSL certificate generation and renewal for you.
Conclusion
Traefik is a powerful tool that makes managing multiple services on a docker compose server easy. It has a lot of features that make it very flexible and easy to use. I hope this post has helped you to set up Traefik and configure it for your own server. If you have any questions or feedback, feel free get in contact!
For more information, see the Traefik documentation.