Docker Repository Server Gave HTTP Response to HTTPS Client
Fleeting- Référence externe : https://stackoverflow.com/questions/49674004/docker-repository-server-gave-http-response-to-https-client
create a new file
/etc/docker/daemon.json with the contents
{ “insecure-registries”:[“host:port”] } (The host is the hostname of the server hosting my docker registry and port is the port where the docker registry is available. In my case, those are 192.168.99.1:50000)
and then restart docker daemon by doing:
$ sudo service docker restart