一、docker CE版本安装
centos安装,其余系统的安装,可以查看官网文档和参考文章末尾的第三方博文。
1. docker CE安装官方文档
https://docs.docker.com/engine/installation/linux/docker-ce/centos/#install-docker-ce
2. docker CE版本
https://github.com/moby/moby/releases
3. 边缘版本和测试版本
https://docs.docker.com/engine/installation/
二、安装docker CE
1. 依赖包配置
yum install -y yum-utils device-mapper-persistent-data lvm2
2. 配置docker-CE yum源
yum-config-manager \
--add-repo \
https://download.docker.com/linux/centos/docker-ce.repo
2.1边缘库与测试库
使用边缘库
sudo yum-config-manager --enable docker-ce-edge
使用测试库
sudo yum-config-manager --enable docker-ce-testing
2.2 禁用边缘库
禁用边缘库
yum-config-manager --disable docker-ce-edge
2.3 更新yum索引
yum makecache fast
3. 安装docker-ce
yum install -y --setopt=obsoletes=0 \
docker-ce-17.03.2.ce-1.el7.centos \
docker-ce-selinux-17.03.2.ce-1.el7.centos
4. 启动docker
service docker start
5. 设置开机自启动
systemctl enable docker.service
三、其他系统安装
1. windows安装
http://www.runoob.com/docker/windows-docker-install.html
2. mac安装
http://www.runoob.com/docker/macos-docker-install.html
3. ubuntu安装
http://www.runoob.com/docker/ubuntu-docker-install.html