Centos安装Docker
1、确认版本是Centos7及以上
cat /etc/redhat-release
2、安装gcc相关
yum -y install gcc
yum -y install gcc-c++
3、安装软件包
yum install -y yum-utils
4、设置镜像仓库
yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
5、更新软件包索引
yum makecache fast
6、安装Docker
yum -y install docker-ce docker-ce-cli containerd.io
7、启动Docker
systemctl start docker
8、测试Docker
查看Docker版本
docker version
运行hello-world
docker run hello-world
9、配置阿里云加速
将代码复制执行即可。
评论