Linux安装docker容器
前置要求:Centos系统内核要不低于3.10,可以通过uname -r来查询当前内核版本
安装docker命令:
curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun
也可以使用国内 daocloud 一键安装命令:
curl -sSL https://get.daocloud.io/docker | sh
开启docker
sudo systemctl enable docker
sudo systemctl start docker
注:启动docker前先关闭防火墙,命令如下:
sudo systemctl disable firewalld
sudo systemctl stop firewalld
验证docker是否安装成功
sudo docker run hello-world