I've docker image pushed onto private registry running on host1. However, when I try to fetch the image from remote host (host2), I do see the following error:
Docker command: docker pull <host1>:5000/alpine:latest
Result : Error response from daemon: Get https://<host1>:5000/v1/_ping: EOF
How can i make docker pull
fetch the image with http
call instead of https
??
I've explored all the options including starting docker daemon with --insecure-registry
flag. None of them seem to have any affect on what I'm trying to achieve here.
Docker version 1.11.1
OS Type : Linux
The following curl command from remote host fetched data
curl -1 http://<host1>:5000/v1/_ping
Same curl command with https: seems to have problem fetching data
curl -1 https://<host1>:5000/v1/_ping
curl: (35) Encountered end of file