Docker使用2-Update the application

写在前面

主题是Update the application,这里是链接

更新项目

承接上个文章,这个文章主要是学习项目内容更新后重新构建image。

  1. 编辑上个项目的src/static/js/app.js文件,将第56行注释,添加下面的代码
<p className="text-center">You have no todo items yet! Add one above!</p>
  1. 重新生成镜像
docker build -t getting-started .
  1. 停止并移除之前运行的容器,container-id可以通过docker ps获得
docker rm -f <the-container-id>
  1. 生成并运行容器
docker run -dp 127.0.0.1:3000:3000 getting-started

你可能感兴趣的:(docker,容器,运维)