-
Hi -- My docker daemon on the host is started with the following parameters (using systemd):
When trying to connect to the docker daemon on the host I set up things similar to how the docker documentation specified: I created a .docker directory within the root's home directory So having setting this up on the docker host, I'm trying to determine how to set this up within the watchtower container. "you simply need to volume mount the certificates generated by docker-machine into the watchtower container and optionally specify --tlsverify flag." What are the names of the certs that have contained within the /etc/ssl/docker directory? ca.pem, cert.pem and key.pem??? The instructions aren't really clear. Thanks for any information |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
I have never tried it, but from what I see in the documentation you can simply mount the folder where you placed your client certs somewhere (like |
Beta Was this translation helpful? Give feedback.
I have never tried it, but from what I see in the documentation you can simply mount the folder where you placed your client certs somewhere (like
/etc/ssl/docker
) and point to that folder in the environment variableDOCKER_CERT_PATH
.It should be the same files as for the docker client, are you trying to mount them individually?