概述
我们的教学案例使用的是 Ubuntu Server 16.04 LTS 版本,属于 systemd
系统,需要在 /etc/docker/daemon.json
中增加如下内容(如果文件不存在请新建该文件)
1 | { |
注意:该文件必须符合 json
规范,否则 Docker 将不能启动。
之后重新启动服务
1 | $ sudo systemctl daemon-reload |
检查客户端配置是否生效
使用 docker info
命令手动检查,如果从配置中看到如下内容,说明配置成功(这里以:192.168.189.138
为例,此 ip
地址为 Docker Registry 私服 ip 地址
)
1 | Insecure Registries: |
测试镜像上传
我们以 Nginx 为例测试镜像上传功能
1 | ## 拉取一个镜像 |
查看全部镜像
1 | curl -XGET http://192.168.189.138:5000/v2/_catalog |
测试拉取镜像
先删除镜像
1 | docker rmi nginx |
再拉取镜像
1 | docker pull 192.168.189.138:5000/nginx |
注意:目前的配置只能做到本服务器拉取、推送,如果在其他主机上试图推送镜像到上来,结果是失败的。如果想做到 externally-accessible
(外部可访问),可参考:
If you like this blog or find it useful for you, you are welcome to comment on it. You are also welcome to share this blog, so that more people can participate in it. If the images used in the blog infringe your copyright, please contact the author to delete them. Thank you !