centos7抢先安装docker1.0
1.关闭selinux [root@localhost ~]#setenforce 0 2.安装FedoraEPEL [root@localhost ~]#yuminstall -yhttp://ftp.riken.jp/Linux/fedora/epel/6/x86_64/epel-release-6-8.noarch.rpm 3.安装docker [root@localhost ~]#yum install -y docker-io [root@localhost ~]#yum install -y docker 4.下载官方镜像 [root@localhost ~]#docker pull centos 5.查看安装好的虚拟机 [root@localhost ~]#docker images 6.进入安装的虚拟机 docker run -i -t centos /bin/bash 7.exit退出 8.查找centos版本 docker search centos 9.安装6.4虚拟机 docker pull gpmidi/centos-6.4 10.进入新安装的6.4虚拟机 d...