红联Linux门户
Linux帮助

阿里云搭建docker的历程

发布时间:2015-11-07 15:47:39来源:linux网站作者:bwshqh

一、缘起:

最近docker 很火,所以期待能在阿里云上自己练习一下搭建一个docker的环境。(centos 6.5)


二、历程:

1.查看linux位数(此步十分重要)

file /bin/ls

(因为阿里云的安装有可能会装成32位的,如果是32位的,不论是编译安装还是yum安装都装不上docker)

必须是64位的才行


2.升级内核

通过以下命令查看您的 CentOS 内核:

uname -r

如果执行以上命令后,输出的内核版本号低于 3.8,请参考下面的方法来来升级您的 Linux 内核。

对于 CentOS 6.5 而言,内核版本默认是 2.6。首先,可通过以下命令安装最新内核:

rpm --import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org
rpm -ivh http://www.elrepo.org/elrepo-release-6-5.el6.elrepo.noarch.rpm
yum -y --enablerepo=elrepo-kernel install kernel-lt

随后,编辑以下配置文件:

vi /etc/grub.conf

将default=1修改为default=0。

最后,通过reboot命令重启操作系统。


3.实用:

安装:
 
yum -y install febootstrap
 
添加用户:
 
adduser admin
 
把admin用户加到docker组:
 
usermod -a -G docker admin
 
使用admin用户操作
 
su admin
 
cd /home/admin
 
使用root账号制作镜像,普通用户制作后会有各种问题:
 
febootstrap -i bash -i wget -i yum -i iputils -i iproute centos6 centos6-doc http://mirrors.163.com/centos/6/os/x86_64/
 
(-i 安装package, centos6 操作系统版本,centos6-doc安装目录,最后是源地址)

上面成功后:
 
cd centos6-doc/
 
tar -c .|docker import - centos63-bash
 
(centos63-bash为docker镜像名字)
 
执行:docker images
 
REPOSITORY          TAG                 IMAGE ID            CREATED             VIRTUAL SIZE
centos63-bash       latest              d2ecedd2b5ed        8 minutes ago       306.7 MB
 
测试docker镜像,创建一个容器:

docker run -t -i centos63-bash /bin/bash
 
退出后
 
docker ps -a
 
[admin@localhost root]$ docker ps -a
CONTAINER ID        IMAGE                  COMMAND             CREATED             STATUS                     PORTS               NAMES
14c9afaf2f06        centos63-bash:latest   /bin/bash  7 minutes ago       Exited (0) 6 minutes ago  insane_lalande     

启动刚才创建的容器:
 
docker start 14c9afaf2f06
 
进入启动后的容器:
 
docker attach 14c9afaf2f06
 
一个简单的镜像就制作完成了。

补充:进入容器之后就可以在容器里进行各种环境的搭建操作。


阿里云云服务器Linux系统挂载数据盘图文教程:http://www.linuxdiyf.com/linux/14984.html

阿里云服务器ECS Ubuntu系统安装配置:http://www.linuxdiyf.com/linux/13662.html

Ubuntu系统中登陆阿里云服务器的方法:http://www.linuxdiyf.com/linux/13369.html

阿里云CentOS 6.5模板上安装Docker:http://www.linuxdiyf.com/linux/10363.html

阿里云Ubuntu 14.04模板上安装Docker:http://www.linuxdiyf.com/linux/10361.html