博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
centos 7 安装 docker(详细)
阅读量:5875 次
发布时间:2019-06-19

本文共 870 字,大约阅读时间需要 2 分钟。

更新源

mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backupwget -O/etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

更新系统

yum update

更新yum && 安装tools

yum update && yum install -y vim python-pip curl git

更新 yum 缓存:

sudo yum makecache fast

安装 Docker-ce:

sudo yum -y install docker-ce

启动 Docker 后台服务

sudo systemctl start docker

测试运行 hello-world

docker pull hello-worlddocker run hello-world

docker加速器

curl -sSL https://get.daocloud.io/daotools/set_mirror.sh | sh -s http://88bbf89e.m.daocloud.io//需要重启systemctl restart docker

若报错Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?

解决办法$ systemctl daemon-reload$ sudo service docker restart$ sudo service docker status (should see active (running))$ sudo docker run hello-world

转载于:https://www.cnblogs.com/somliy/p/10279649.html

你可能感兴趣的文章
table表头固定
查看>>
截取字符串中两个字符串中的字符串
查看>>
php去除换行符的方法小结(PHP_EOL变量的使用)
查看>>
effective C++中条款37:绝不又一次定义继承而来的缺省參数值
查看>>
spring xml properties split with comma for list
查看>>
判断点是否在三角形内
查看>>
Android实战简易教程-第二十三枪(基于Baas的用户注冊验证username是否反复功能!)...
查看>>
在odl中怎样实现rpc
查看>>
leetcode 110 Balanced Binary Tree
查看>>
python活用isdigit方法显示系统进程
查看>>
MySQL索引覆盖
查看>>
Spring框架之Filter应用
查看>>
项目开发总结
查看>>
知行合一
查看>>
jmeter插件之jsonpath提取响应结果和做断言
查看>>
apt-get 命令加 autoclean clean autoremove 区别
查看>>
Docs-->.NET-->API reference-->System.Web.UI.WebControls-->Repeater
查看>>
发布支持多线程的PowerShell模块 —— MultiThreadTaskRunner
查看>>
从零开始理解JAVA事件处理机制(1)
查看>>
(转)eclipse安装jetty
查看>>