## 安装 docker 首先查看系统内核 `uname -r`,Docker 运行在 CentOS 7 上,要求系统为64位、系统内核版本为 3.10 以上。 #### 使用yum安装 - 更新 yum `yum update` - 安装 `yum -y install docker` - 启动 Docker 服务 `service docker start` - 测试运行 `docker run hello-world` #### 使用脚本安装 - 更新 yum `yum update` - 执行 Docker 安装脚本,执行这个脚本会添加 docker.repo 源并安装 Docker。 `curl -fsSL https://get.docker.com/ | sh` - 启动 Docker 服务 `sudo service docker start` - 测试运行 `sudo docker run hello-world` hello-world,由于本地没有hello-world这个镜像,所以会下载一个hello-world的镜像,并在容器内运行。