基于容器创建镜像:
commit用来基于一个现有容器来创建镜像
[[email protected] ~]# docker commit --help 参数详解 -a, 作者信息 (e.g., "John Hannibal Smith <[email protected]>") -c, 将Dockerfile指令应用于创建的映像 (default [])-m, --message string -m 提交信息 -p, 提交时暂停容器 (default true)
创建自己的镜像仓库
基于容器创建镜像
[[email protected] ~]# docker commit -p b429c9ed543f tomcat:v1
创建阿里云镜像仓库:
第一步:登录
docker login --username=kenkendyg registry.cn-beijing.aliyuncs.com
第二步:修改镜像名
[[email protected] ~]# docker tag busybox(本地镜像名) registry.cn-beijing.aliyuncs.com/kenken/busybox2:v1(要上传的镜像名)
第三步:推送
[[email protected] ~]# docker push registry.cn-beijing.aliyuncs.com/kenken/busybox2:v1
第四步:拉取镜像
[[email protected] ~]# docker pull registry.cn-beijing.aliyuncs.com/kenken/busybox2:v1
原文地址:https://www.cnblogs.com/twoo/p/11815578.html
时间: 2024-10-23 13:44:06