码迷,mamicode.com
首页 > 其他好文 > 详细

Docker - Image创建

时间:2014-08-16 22:26:01      阅读:333      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   color   io   ar   div   

自己创建Image会有一些好处,可以选择最新的版本,而且从国内的镜像创建时更新软件也会从该镜像获取,速度更快。

(1)安装debootstrap

zhouh1@uhome:/media/zhouh1/databak/docker$ sudo apt-get install debootstrap 
Reading package lists... Done
。。。。。。。

以下为关于这个包的介绍

Description: Bootstrap a basic Debian system
 debootstrap is used to create a Debian base system from scratch, without requiring the availability of dpkg or apt. It does this by downloading .deb files from a mirror site,
 and carefully unpacking them into a directory which can eventually be chrooted into.

 

(2)创建基础系统

zhouh1@uhome:/mnt/data/docker$ sudo debootstrap trusty trusty http://mirrors.163.com/ubuntu/
I: Retrieving Release 
I: Retrieving Release.gpg 
I: Checking Release signature
I: Valid Release signature (key id 790BC7277767219C42C86F933B4FE6ACC0B21F32)
I: Retrieving Packages 
。。。。。。。。。。
。。。。。。。。。。
I: Configuring rsyslog...
I: Configuring kbd...
I: Configuring ubuntu-minimal...
I: Configuring libc-bin...
I: Configuring initramfs-tools...
I: Base system installed successfully

(3)导入到docker

zhouh1@uhome:/mnt/data/docker/trusty$  sudo tar -c . | sudo docker import - trusty
b769d49299800c7984036f3afdd73aa8f0f8f8d6bd8dd0c45c267ecabd04cb08

(4)测试

zhouh1@uhome:/mnt/data/docker/trusty$ sudo docker run -i -t trusty /bin/bash
root@2d66c560066c:/# test
root@2d66c560066c:/# echo

root@2d66c560066c:/# exit

 

Docker - Image创建,布布扣,bubuko.com

Docker - Image创建

标签:des   style   blog   http   color   io   ar   div   

原文地址:http://www.cnblogs.com/utopiazh/p/docker_image.html

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