Docker repository server gave HTTP response to HTTPS client

后端 未结 6 1195
粉色の甜心
粉色の甜心 2021-02-05 02:09

I use Docker toolbox for windows and i`m trying run private docker registry from this documentation https://docs.docker.com/registry/deploying/

But it`s not work for me.

6条回答
  •  旧巷少年郎
    2021-02-05 02:51

    Looks like you haven't set the Docker Daemon right. Notice these few lines:

    Insecure Registries:
     127.0.0.0/8
    

    Try to add this line to Docker's daemon.json file and restart the Docker Daemon:

    "insecure-registries":["192.168.99.100:5000"]
    

提交回复
热议问题