Linux CentOS 6.8 安装 Docker

Linux CentOS 6.8 安装 Docker

这一节主要来自于:How To Install Docker on CentOS 6

一、移除Docker

yum remove docker

二、移除 Docker-selinux

yum remove docker-selinux

三、修改Docker镜像配置文件

rpm -iUvh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm

四、安装Docker

yum update -y
yum -y install docker-io

五、启动Docker

service docker start
chkconfig docker on

猜你喜欢

转载自blog.csdn.net/qq_28413435/article/details/83017806