sudo yum remove docker*
使用官方安装脚本
curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun
docker run hello-world
在容器内运行一个应用程序比如:?docker run hello-world
docker pull node:latest
docker images
docker run -itd --name node-test node
docker exec -it node-test /bin/bash