一、使用官方安装脚本自动安装 (仅适用于公网环境)
curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun
二、手动安装
Ubuntu 14.04 16.04 (使用apt-get进行安装)
# step 1: 安装必要的一些系统工具
sudo apt-get update
sudo apt-get -y install apt-transport-https ca-certificates curl software-properties-common
# step 2: 安装GPG证书
curl -fsSL http://mirrors.aliyun.com/docker-ce/linux/ubuntu/gpg | sudo apt-key add -
# Step 3: 写入软件源信息
sudo add-apt-repository "deb [arch=amd64] http://mirrors.aliyun.com/docker-ce/linux/ubuntu $(lsb_release -cs) stable"
# Step 4: 更新并安装 Docker-CE
sudo apt-get -y update
sudo apt-get -y install docker-ce
CentOS 7 (使用yum进行安装)
# step 1: 安装必要的一些系统工具
sudo yum install -y yum-utils device-mapper-persistent-data lvm2
# Step 2: 添加软件源信息
sudo yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
# Step 3: 更新并安装 Docker-CE
sudo yum makecache fast
sudo yum -y install docker-ce
# Step 4: 开启Docker服务
sudo service docker start
三、安装校验
执行命令:docker version
四、Docker启动、停止等命令
- 开启Docker服务
service docker start
或systemctl start docker
或systemctl start docker.service
- 查看Docker启动状态
systemctl status docker
- 设置Docker开启自启动
systemctl enable docker
- 停止Docker服务
service docker stop
或systemctl stop docker
- 重启Docker服务
service docker restart
或systemctl restart docker
五、参考资料
CentOS帮助连接
Ubuntu帮助链接
Debian帮助链接
Fedora帮助链接
【参考文档】:Docker CE 镜像源站