查看系统内核
[root@iZ2ze77c1awqn17yyyf4o3Z /]# uname -r
3.10.0-1160.25.1.el7.x86_64
查看系统版本 7以上才能使用
[root@iZ2ze77c1awqn17yyyf4o3Z /]# cat /etc/os-release
NAME="CentOS Linux"
VERSION="7 (Core)"
ID="centos"
ID_LIKE="rhel fedora"
VERSION_ID="7"
PRETTY_NAME="CentOS Linux 7 (Core)"
ANSI_COLOR="0;31"
CPE_NAME="cpe:/o:centos:centos:7"
HOME_URL="https://www.centos.org/"
BUG_REPORT_URL="https://bugs.centos.org/"
CENTOS_MANTISBT_PROJECT="CentOS-7"
CENTOS_MANTISBT_PROJECT_VERSION="7"
REDHAT_SUPPORT_PRODUCT="centos"
REDHAT_SUPPORT_PRODUCT_VERSION="7"
1.卸载旧版本
yum remove docker \
2.需要的安装包
yum install -y yum-utils
3.设置镜像仓库
这是默认国外的,超级慢。
yum-config-manager \
--add-repo \
https://download.docker.com/linux/centos/docker-ce.repo
以下是阿里云镜像地址,推荐使用!非常快
yum-config-manager \
--add-repo \
http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
更新yum软件包索引
yum makecache fast
4.安装docker doecker-ce 社区
yum install docker-ce docker-ce-cli containerd.io
5.启动docker
systemctl start docker
6.使用docker version 查看是否成功
docker version
7.hello-world
docker run hello-world
可能会遇到
Error response from daemon: pull access denied for hello-worl, repository does not exist or may require 'docker login': denied: requested access to the resource is denied.
重启容器完美解决
docker restart
8.查看下载的 hello-world镜像
docker images
番外 卸载docker
1.卸载依赖
yum remove docker-ce docker-ce-cli containerd.io
2.删除资源
/var/lib/docker docker默认工作路径
rm -rf /var/lib/docker