Just wondering how to do this:
If I start my docker daemon with the following configuration which exposes the docker deamon over tcp but requires use of tls client certs:
ExecStart=/usr/bin/dockerd -H unix:///var/run/docker.sock -H tcp://0.0.0.0:2376 --tlsverify --tlscacert=/etc/ssl/self-signed-certs/server/ca.pem --tlscert=/etc/ssl/self-signed-certs/server/cert.pem --tlskey=/etc/ssl/self-signed-certs/server/key.pem
Can traefik make use of this setup?
For example if including a static traefik.yml file:
providers:
docker:
# endpoint: "unix:///var/run/docker.sock"
endpoint: "tcp://dockerproxy:2376"
exposedbydefault: false
watch: true
network: docker-api
Where would you specify the use of client certs? Is this feature even enabled?