8-1、本地镜像发布到阿里云流程
8-2、镜像的生成方法
8-2-1、前面的DockerFile
8-2-2、从容器创建一个新的镜像
docker commit [OPTIONS] 容器ID [REPOSITORY[:TAG]]
8-3、将本地镜像推送到阿里云
8-3-1、本地镜像素材原型
8-3-2、阿里云开发者平台
https://dev.aliyun.com/search.html
8-3-3、创建仓库镜像
1、命名空间
2、仓库名称
8-3-4、将镜像推送到registry
参考访问凭证:https://cr.console.aliyun.com/cn-hangzhou/instances/credentials
sudo docker login --username=xxxx@aliyun.com registry.cn-hangzhou.aliyuncs.com
sudo docker tag [ImageId] registry.cn-hangzhou.aliyuncs.com/xxxx/mycentos:[镜像版本号]
sudo docker push registry.cn-hangzhou.aliyuncs.com/xxxx/mycentos:[镜像版本号]
8-3-5、公有云可以查询到
8-4、将阿里云上的镜像下载到本地
docker pull registry.cn-hangzhou.aliyuncs.com/xxxx/mycentos:[镜像版本号]