When trying to pull an image from docker hub, which assumes HTTPS, requests past through our corporate proxy, requiring our certificate to be installed in whatever client is making the request. I’m trying to do a simple “docker build” from Dockerfile.
I get the following output/error:
Sending build context to Docker daemon 2.048 kB
Step 1 : FROM maven:3-jdk-8
Pulling repository docker.io/library/maven
Error while pulling image: Get https://index.docker.io/v1/repositories/library/maven/images: x509: certificate signed by unknown authority
Information
Docker for Mac: version: mac-v1.12.0-beta18-3-gec40b14
OS X: version 10.11.5 (build: 15F34)
I have followed the suggestions in this topic (Adding (self signed) certificates). I may not be quite understanding, but it seems that in my case I’m calling ‘docker’, an OS X executable, and that would be pulling it’s certificates from a different place. Any suggestion on how to add our self-signed certificate so we can pull images from docker hub?