其他分享
首页 > 其他分享> > Docker 环境安装

Docker 环境安装

作者:互联网

Docker 环境安装

前置工作 之 基础环境安装

当前环境

centos7.9 64位 minimal版本

当前环境为 root用户

若当前存在Docker环境 需卸载

yum remove docker \
                  docker-client \
                  docker-client-latest \
                  docker-common \
                  docker-latest \
                  docker-latest-logrotate \
                  docker-logrotate \
                  docker-engine

更新 yum 并下载curl工具

yum update -y && yum install curl -y

安装net-tool

yum -y install net-tools.x86_64

安装Wget

yum -y install wget

安装gcc相关环境

yum -y install gcc

yum -y install gcc-c++

安装yum工具包

yum install -y yum-utils

修改为阿里云yum源(不可以先更换源、应先执行上面的命令、否则会导致yum失效)

cd /etc/yum.repos.d

mv CentOS-Base.repo CentOS-Base.repo.bk

wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo

yum clean all

yum makecache

yum makecache fast

设置docker的仓库地址

阿里云 
yum-config-manager \
    --add-repo \
    http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
    
清华大学
yum-config-manager \
    --add-repo \
    https://mirrors.tuna.tsinghua.edu.cn/docker-ce/linux/centos/docker-ce.repo

Docker 安装

安装docker

yum install docker-ce docker-ce-cli containerd.io

启动docker

systemctl start docker

打印HelloWorld

docker run hello-world

标签:环境,ce,repo,yum,install,Docker,安装,docker
来源: https://www.cnblogs.com/liushuku/p/16683991.html