linux的centos系统安装docker

文章目录

  • [一. 安装Docker](#一. 安装Docker)
    • [1. 安装yum-utils包](#1. 安装yum-utils包)
    • [2. 配置Docker yum源](#2. 配置Docker yum源)
    • [3. 安装 Docker CE](#3. 安装 Docker CE)
    • [4. 启动并设置 Docker 开机自启](#4. 启动并设置 Docker 开机自启)
    • [5. 验证Docker安装](#5. 验证Docker安装)
  • [二. 配置镜像加速器](#二. 配置镜像加速器)

一. 安装Docker

1. 安装yum-utils包

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

2. 配置Docker yum源

  • 官网源,在没有外网的服务器基本不同,不推荐
shell 复制代码
yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
  • 阿里云镜像源,国内强烈推荐
shell 复制代码
yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo

3. 安装 Docker CE

shell 复制代码
yum install -y docker-ce docker-ce-cli containerd.io

4. 启动并设置 Docker 开机自启

shell 复制代码
sudo systemctl start docker
sudo systemctl enable docker

5. 验证Docker安装

shell 复制代码
docker run hello-world

二. 配置镜像加速器

shell 复制代码
sudo mkdir -p /etc/docker
sudo tee /etc/docker/daemon.json <<-'EOF'
{
  "registry-mirrors": ["https://kxc88bv4.mirror.aliyuncs.com"]
}
EOF
sudo systemctl daemon-reload
sudo systemctl restart docker
相关推荐
time never ceases18 分钟前
使用docker方式进行Oracle数据库的物理迁移(helowin/oracle_11g)
数据库·docker·oracle
饮浊酒24 分钟前
Linux操作系统 ------(3.文本编译器Vim)
linux·vim
lihuhelihu32 分钟前
第3章 CentOS系统管理
linux·运维·服务器·计算机网络·ubuntu·centos·云计算
矛取矛求1 小时前
Linux系统性能调优技巧
linux
One_Blanks1 小时前
渗透测试-Linux基础(1)
linux·运维·安全
Perishell1 小时前
无人机避障——大疆与Airsim中的角速度信息订阅获取
linux·动态规划·无人机
爱吃喵的鲤鱼1 小时前
linux进程的状态之环境变量
linux·运维·服务器·开发语言·c++
dessler1 小时前
Linux系统-ubuntu系统安装
linux·运维·云计算
荒Huang2 小时前
Linux挖矿病毒(kswapd0进程使cpu爆满)
linux·运维·服务器
MonkeyKing_sunyuhua2 小时前
ubuntu22.04 docker-compose安装postgresql数据库
数据库·docker·postgresql