CentOS7.6 Docker安装使用

安装Docker

更新本地yum仓库

安装epel扩展更新源

bash 复制代码
sudo yum install -y vim wget epel-release

更新yum仓库

bash 复制代码
sudo yum update -y

删除旧版本docker

bash 复制代码
sudo yum remove docker \
                  docker-client \
                  docker-client-latest \
                  docker-common \
                  docker-latest \
                  docker-latest-logrotate \
                  docker-logrotate \
                  docker-engine

安装yum管理工具并配置docker镜像源

安装yum管理工具

bash 复制代码
sudo yum install -y yum-utils

配置docker阿里镜像源

bash 复制代码
sudo yum-config-manager \
    --add-repo \
    http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo

安装docker

bash 复制代码
sudo yum install -y docker-ce docker-ce-cli containerd.io docker-compose-plugin

启动docker并检验安装

bash 复制代码
sudo systemctl start docker && docker run hello-world

docker一键安装脚本

bash 复制代码
sudo yum install -y vim wget epel-release && yum update -y \
yum remove docker \
                  docker-client \
                  docker-client-latest \
                  docker-common \
                  docker-latest \
                  docker-latest-logrotate \
                  docker-logrotate \
                  docker-engine	&& \

yum install -y yum-utils && yum-config-manager \
    --add-repo \
    http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo \
yum install -y docker-ce docker-ce-cli containerd.io docker-compose-plugin \
systemctl start docker && docker run hello-world
相关推荐
C-cat.6 分钟前
Linux|环境变量
linux·运维·服务器
wenyue11217 分钟前
Revolutionize Your Kubernetes Experience with Easegress: Kubernetes Gateway API
容器·kubernetes·gateway
yunfanleo21 分钟前
docker run m3e 配置网络,自动重启,GPU等 配置渠道要点
linux·运维·docker
烦躁的大鼻嘎1 小时前
【Linux】深入理解GCC/G++编译流程及库文件管理
linux·运维·服务器
乐大师1 小时前
Deepin登录后提示“解锁登陆密钥环里的密码不匹配”
运维·服务器
ac.char1 小时前
在 Ubuntu 上安装 Yarn 环境
linux·运维·服务器·ubuntu
敲上瘾1 小时前
操作系统的理解
linux·运维·服务器·c++·大模型·操作系统·aigc
梅见十柒2 小时前
wsl2中kali linux下的docker使用教程(教程总结)
linux·经验分享·docker·云原生
传而习乎2 小时前
Linux:CentOS 7 解压 7zip 压缩的文件
linux·运维·centos
soulteary2 小时前
突破内存限制:Mac Mini M2 服务器化实践指南
运维·服务器·redis·macos·arm·pika