搭建docker镜像,并将开发的数据打包成镜像,推送到docker的私有仓库,方便开发。
搭建的步骤如下:
docker pull registry
docker create -it registry /bin/bash
docker run -d -p 5000:5000 -v /data/registry:/tmp/registry registry
docker ps -a
docker exec -it f1c57ca66d28 /bin/sh
vim /etc/docker/daemon.json
101.37.171.235:5000 为自己机器的外网IP和端口号
“https://docker.mirrors.ustc.edu.cn”, “https://hub-mirror.c.163.com” 为可用的外网docker镜像
{"insecure-registries":["101.37.171.235:5000"],
"registry-mirrors": ["https://docker.mirrors.ustc.edu.cn", "https://hub-mirror.c.163.com"]
}
docker pull httpd
docker tag httpd:latest 101.37.171.235:5000/httpd
docker push 101.37.171.235:5000/httpd
curl -XGET http://101.37.171.235:5000/v2/_catalog
docker pull 101.37.171.235:5000/httpd
自此搭建成功
docker update --restart=always 1778d51b6342
版权说明 : 本文为转载文章, 版权归原作者所有 版权申明
原文链接 : https://blog.csdn.net/sunyuhua_keyboard/article/details/124780424
内容来源于网络,如有侵权,请联系作者删除!