码迷,mamicode.com
首页 > 系统相关 > 详细

docker下载ubuntu并进行修改后生成新的镜像提交

时间:2017-11-27 17:28:00      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:ubuntu   djang   class   run   comment   variable   repo   修改   pip   

一  docker pull ubuntu ,先下载下来一个镜像,

或者 从本地启动一个镜像

docker run -i -t ubuntu /bin/bash

进入一定更新操作

# shell on container

$ apt-get update

$ apt-get -y install python-pip

$ pip install django

上面的操作是更新源,然后安装pip和django

更新镜像

docker commit -m="description about images" --author="author" {container_id} {repository/images_name:tag}

container_id为镜像本来的id,后面的repository可以写自己的名字,imgaes_name可以写ubuntu,tag可以写v2

 

四 从更新后的镜像中启动

docker run -d -t wang/ubuntu:v2 /bin/bash后台运行

或者 docker run -i -t wang/ubuntu:v2 /bin/bash 交互式运行

docker下载ubuntu并进行修改后生成新的镜像提交

标签:ubuntu   djang   class   run   comment   variable   repo   修改   pip   

原文地址:http://www.cnblogs.com/xqnq2007/p/7905077.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!