centos7安装docker

安装依赖包:

$ sudo yum install -y yum-utils \
           device-mapper-persistent-data \
           lvm2

添加国内源:

 $ sudo yum-config-manager \
    --add-repo \
    https://mirrors.ustc.edu.cn/docker-ce/linux/centos/docker-ce.repo

安装Docker CE

$ sudo yum makecache fast
$ sudo yum install docker-ce

也可使用脚本自动安装

$ curl -fsSL get.docker.com -o get-docker.sh
$ sudo sh get-docker.sh --mirror Aliyun

启动 Docker CE

$ sudo systemctl enable docker
$ sudo systemctl start docker

测试

$ docker run hello-world

镜像加速
参考Ubuntu配置docker的那篇文章

你可能感兴趣的:(服务器,centos,docker)