博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
docker删除映像_如何将更改提交到Docker映像
阅读量:2508 次
发布时间:2019-05-11

本文共 626 字,大约阅读时间需要 2 分钟。

docker删除映像

What happens when you deploy your app, and then you want to fix a bug, or simply release an update?

当您部署应用程序,然后要修复错误或仅发布更新时,会发生什么?

Once you have a container running, you can get its ID using docker ps, then you use docker commit to create a new tag for the image from it:

一旦运行了容器,就可以使用docker ps来获取其ID,然后使用docker commit为其创建映像的新标签:

docker commit 
/
:

You can also add a changelog message that lists what changed in the new version:

您还可以添加一条更改日志消息,其中列出新版本中的更改:

docker commit --change "description" 
/
:

翻译自:

docker删除映像

转载地址:http://mamgb.baihongyu.com/

你可能感兴趣的文章
Android 面试题整理总结(二)Java 集合
查看>>
学习笔记_vnpy实战培训day02
查看>>
学习笔记_vnpy实战培训day03
查看>>
VNPY- VnTrader基本使用
查看>>
VNPY - CTA策略模块策略开发
查看>>
VNPY - 事件引擎
查看>>
MongoDB基本语法和操作入门
查看>>
学习笔记_vnpy实战培训day04_作业
查看>>
OCO订单(委托)
查看>>
学习笔记_vnpy实战培训day06
查看>>
回测引擎代码分析流程图
查看>>
Excel 如何制作时间轴
查看>>
matplotlib绘图跳过时间段的处理方案
查看>>
vnpy学习_04回测评价指标的缺陷
查看>>
设计模式10_桥接
查看>>
量化策略回测DCCV2
查看>>
mongodb查询优化
查看>>
五步git操作搞定Github中fork的项目与原作者同步
查看>>
git 删除远程分支
查看>>
删远端分支报错remote refs do not exist或git: refusing to delete the current branch解决方法
查看>>