Docker 安装
一、环境准备
1、环境查看,系统内核: uname -r 3.10以上; 如果内核版本低于3.10,升级软件包及内核 yum update
2、查看系统版本:cat /etc/os-realease CentOS 7
二、安装
1、先安装工具
sudo yum install -y yum-utils
2、设置镜像仓库,默认是国外的,我们使用阿里云的
阿里云地址: sudo yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
国外地址sudo yum-config-manager
--add-repo
https://download.docker.com/linux/centos/docker-ce.repo
3、安装Docker
更新yum 软件包索引: yum makecache fast
安装最新的Docker CE版本:sudo yum install docker-ce docker-ce-cli containerd.io
指定版本安装:yum list docker-ce --showduplicates | sort -r
指定版本安装:sudo yum install docker-ce-<VERSION_STRING> docker-ce-cli-<VERSION_STRING> containerd.io
说明:<VERSION_STRING>,取上图中第二列中的第一个:或第一个数字到-之间的字符串,如20.10.9、20.10.8等。
4、启动docker:sudo systemctl start docker
将docker设置成开机启动 systemctl enable docker
5、验证docker 是否安装成功:sudo docker version
6、运行Helloworld 查看是否安装正确: sudo docker run hello-world
7、查看下载下来的镜像:sudo docker images
8、停止docker: systemctl stop docker
参考博客: https://www.coonote.com/docker/centos-install-docker.html