docker系列--创建镜像
作者:互联网
1. commit
将一个容器保存为一个新的镜像
docker commit [参数] 容器id/容器name [仓库名[:TAG]]
参数名 | 默认值 | 说明 |
---|---|---|
–author, -a | 作者信息, 可以上传发布者信息 | |
–change, -c | 将Dockerfile指令应用于创建的镜像 | |
–message, -m | 提交消息 | |
–pause, -p | true | 提交期间暂停容器 |
示例
docker commit c3f279d17e0a svendowideit/testimage:version3
# 添加环境变量配置
docker commit --change "ENV DEBUG=true" c3f279d17e0a svendowideit/testimage:version3
# 指定新的运行指令
docker commit --change='CMD ["apachectl", "-DFOREGROUND"]' -c "EXPOSE 80" c3f279d17e0a svendowideit/testimage:version4
2. tag
镜像另存为
docker tag 源镜像[:TAG] 目标镜像[:TAG]
示例
# 源镜像使用镜像id
docker tag 0e5574283393 fedora/httpd:version1.0
# 源镜像使用 镜像名:latest
docker tag httpd fedora/httpd:version1.0
# 源镜像使用 镜像名:TAG
docker tag httpd:test fedora/httpd:version1.0.test
# 存储到私人仓库
docker tag 0e5574283393 myregistryhost:5000/fedora/httpd:version1.0
3. build
通过Dockerfile定制镜像
docker build [参数] PATH | URL | -
标签:httpd,fedora,--,tag,commit,镜像,docker 来源: https://blog.csdn.net/p1049990866/article/details/119914099