Skip to main content
2 of 4
Clearer wording on what works and what doesn't

On my cygwin environment the docker cert path is actually set as below and docker seems to work fine.

DOCKER_CERT_PATH=C:\Users\user\.docker\machine\machines\default

The following does indeed give an error

DOCKER_CERT_PATH=/cygdrive/c/Users/user/.docker/machine/machines/default
$ docker version
Could not read CA certificate "\\cygdrive\\c\\Users\\user\\.docker\\machine\\machines\\default\\ca.pem": open \cygdrive\c\Users\user\.docker\machine\machines\default\ca.pem: The system cannot find the path specified.

So try changing the DOCKER_CERT_PATH to regular Windows path format.

My docker version is 1.10.1, if the results are any different.