Is anyone able to help guide me or point me in the direction of a tutorial that demonstrates how set up traefik so that I am able to use a different domain for each mysql instance. As I understand it, in order to use a rule that defines a specific hostname for my mysql container it needs to have TLS enabled. I have given the official mysql image the following labels:
- "traefik.tcp.routers.mysql.rule=HostSNI(`mysql.local`)"
- "traefik.tcp.routers.mysql.entrypoints=mysql"
- "traefik.tcp.routers.mysql.tls=true"
But I'm unsure of how to actually tell mysql about the key and certificate? Any help would be much appreciated.