欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

centos7安装docker

程序员文章站 2022-05-31 11:05:11
...

1 系统版本

Linux VM_38_156_centos 3.10.0-327.36.3.el7.x86_64 #1 SMP Mon Oct 24 16:09:20 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux

2 安装docker

sudo yum -y install docker-ce

3 配置阿里云仓库,需登陆阿里云配置容器镜像服务 https://www.aliyun.com 

新版的 Docker 使用 /etc/docker/daemon.json 来配置 Daemon
    在该配置文件中加入(没有该文件的话,请先创建一个):
    {
      "registry-mirrors": ["https://docker.mirrors.ustc.edu.cn"]
    }
 

4 启动docker

systemctl daemon-reload && service docker start

5 测试docker

docker run hello-world

运行出现Cannot connect to the Docker daemon at tcp://0.0.0.0:2375. Is the docker dae

请参考Cannot connect to the Docker daemon at tcp://0.0.0.0:2375