- docker 安装
lsb_release -a 查看系统
LSB Version: :core-4.1-amd64:core-4.1-noarch:cxx-4.1-amd64:cxx-4.1-noarch:desktop-4.1-amd64:desktop-4.1-noarch:languages-4.1-amd64:languages-4.1-noarch:printing-4.1-amd64:printing-4.1-noarch:trialuse-4.1-amd64:trialuse-4.1-noarch
Distributor ID: CentOS
Description: CentOS Linux release 7.3.1611 (Core)
Release: 7.3.1611
Codename: Core
Docker 要求 CentOS 系统的内核版本高于 3.10 ,验证你的CentOS 版本是否支持 Docker 。
uname -r 命令查看你当前的内核版本
3.10.0-514.26.1.el7.x86_64
安装docker
yum -y install docker-io
启动 Docker 后台服务
service docker start或者systemctl start docker
测试运行 hello-world
docker run hello-world