安装docker
yum -y install docker
运行centos 容器(后台运行模式)
docker run -dit centos
进入运行中的docker容器
docker attach 容器id
docker exec -it 容器id /bin/bash