目录
一、Docker安装
(1)查看操作系统版本是否是CentOS7及以上
(2)yum 包更新到最新
(3)安装需要的软件包, yum-util 提供yum-config-manager功能,另外两个是devicemapper驱动依赖的
(4)设置yum源为阿里云 ((由于国外网站访问速度慢)
(5)安装docker CE(社区版),Docker提供了两个版本:社区版(CE,免费) 和 企业版(EE,收费)
(6)安装后查看docker版本
二、设置ustc的镜像
编辑该文件:
在该文件中输入如下内容:
三、Docker的启动与停止
启动docker:
查看启动状态:
停止docker:
重启docker:
开机启动:
查看docker概要信息 :
查看docker帮助文档 :
一、Docker安装
Docker官方建议在Ubuntu中安装,因为Docker是基于Ubuntu发布的,而且一般Docker出现的问题Ubuntu是最先更新或者打补丁的。在很多版本的CentOS中是不支持更新最新的一些补丁包的。
由于我们学习的环境都使用的是CentOS,因此这里我们将Docker安装到CentOS上。注意:这里建议安装在CentOS7.x以上的版本,在CentOS6.x的版本中,安装前需要安装其他很多的环境而且Docker很多补丁不支持更新。
(1)查看操作系统版本是否是CentOS7及以上
cat /etc/redhat-release
(2)yum 包更新到最新
sudo yum update
(3)安装需要的软件包, yum-util 提供yum-config-manager功能,另外两个是devicemapper驱动依赖的
sudo yum install -y yum-utils device-mapper-persistent-data lvm2
(4)设置yum源为阿里云 ((由于国外网站访问速度慢)
sudo yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
(5)安装docker CE(社区版),Docker提供了两个版本:社区版(CE,免费) 和 企业版(EE,收费)
sudo yum install docker-ce
(6)安装后查看docker版本
二、设置ustc的镜像
加快docker在国内的下载镜像速度,docker默认是连接国外的站点,所以下载速度慢。
ustc是老牌的linux镜像服务提供者了,还在遥远的ubuntu 5.04版本的时候就在用。ustc的docker镜像加速器速度很快。ustc docker mirror的优势之一就是不需要注册,是真正的公共服务。
https://lug.ustc.edu.cn/wiki/mirrors/help/docker
编辑该文件:
没有该文件则 使用命令:touch daemon.json 创建一个文件
vi /etc/docker/daemon.json
在该文件中输入如下内容:
{
"registry-mirrors": ["https://docker.mirrors.ustc.edu.cn"]
}
如果报错:
docker: Error response from daemon: Get https://registry-1.docker.io/v2/: net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers).
See 'docker run --help'
则在镜像地址中多加几个国内镜像
Docker国内源说明:
Docker 官方中国区
https://registry.docker-cn.com
网易
中国科技大学
https://docker.mirrors.ustc.edu.cn
阿里云
组合起来:
{
"registry-mirrors": ["https://docker.mirrors.ustc.edu.cn","http://hub-mirror.c.163.com","https://pee6w651.mirror.aliyuncs.com","https://registry.docker-cn.com"]
}
然后重启Docker
重启docker服务
service docker restart
成功!
三、Docker的启动与停止
systemctl命令是系统服务管理器指令
启动docker:
systemctl start docker
查看启动状态:
systemctl status docker
停止docker:
systemctl stop docker
重启docker:
systemctl restart docker
开机启动:
systemctl enable docker
查看docker概要信息 :
docker info
查看docker帮助文档 :
docker --help