I use circleci 2.0 and execute dockers commands using the “- setup_remote_docker” statement in my config.yml
I get this error in a docker operation :
Get https://registry.mydomain.com/v2/: x509: certificate signed by unknown authority
I have a ca.crt registered ( via update-ca-certificates ) in the docker Ubuntu primary container I am using with circleci but I suspect because the “setup_remote_docker” create a separate environment this later does have access to this ca.crt? Not really sure about this theory.
Does anyone has a clue how to overcome this X509 error?
Thanks