安装 Docker(使用国内源)

ops/2024/11/27 2:58:45/

一、安装Docker-ce

1、下载阿里云的repo源

[root@localhost ~]# yum install yum-utils -y && yum-config-manager --add-repo https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo  &&  yum makecache

# 尝试列出 docker-ce 的版本

[root@localhost ~]# yum list docker-ce --showduplicates | sort -r

2、安装 Docker-ce

[root@localhost ~]# yum install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin -y

4、启动Docker

[root@localhost ~]# systemctl restart docker && systemctl enable docker  &&  docker --version

Created symlink /etc/systemd/system/multi-user.target.wants/docker.service → /usr/lib/systemd/system/docker.service.

Docker version 27.3.1, build ce12230

# 验证安装

[root@localhost ~]# docker version

Client: Docker Engine - Community

 Version:           27.3.1

 API version:       1.47

 Go version:        go1.22.7

 Git commit:        ce12230

 Built:             Fri Sep 20 11:42:48 2024

 OS/Arch:           linux/amd64

 Context:           default

Server: Docker Engine - Community

 Engine:

  Version:          27.3.1

  API version:      1.47 (minimum version 1.24)

  Go version:       go1.22.7

  Git commit:       41ca978

  Built:            Fri Sep 20 11:41:09 2024

  OS/Arch:          linux/amd64

  Experimental:     false

 containerd:

  Version:          1.7.23

  GitCommit:        57f17b0a6295a39009d861b89e3b3b87b005ca27

 runc:

  Version:          1.1.14

  GitCommit:        v1.1.14-0-g2c9f560

 docker-init:

  Version:          0.19.0

  GitCommit:        de40ad0

二、配置仓库

1、新建目录,存放daemon.json文件

[root@localhost ~]#  mkdir -p /etc/docker

2、写入docker仓库地址到daemon.json文件

[root@localhost ~]# tee /etc/docker/daemon.json <<-'EOF'

{

  "registry-mirrors": ["https://docker.fxxk.dedyn.io"]

}

EOF

注:

        1)、网上说的修改成阿里的仓库地址已不可用,官方调整说明:

[root@localhost ~]# curl https://x3eaedgw.mirror.aliyuncs.com

This request is forbidden. Please proceed to https://help.aliyun.com/zh/acr/product-overview/product-change-acr-mirror-accelerator-function-adjustment-announcement to view the announcement.

       2 )、这里提供的 registry-mirrors 如果有天也不可用,修改一个可用的就可以了。

3、重启docker服务

[root@localhost ~]# systemctl daemon-reload && systemctl restart docker

4、拉取镜像/运行容器 成功

[root@localhost ~]# docker pull hello-world

Using default tag: latest

latest: Pulling from library/hello-world

c1ec31eb5944: Pull complete

Digest: sha256:305243c734571da2d100c8c8b3c3167a098cab6049c9a5b066b6021a60fcb966

Status: Downloaded newer image for hello-world:latest

docker.io/library/hello-world:latest

[root@localhost ~]# docker run hello-world

Hello from Docker!

This message shows that your installation appears to be working correctly.

To generate this message, Docker took the following steps:

 1. The Docker client contacted the Docker daemon.

 2. The Docker daemon pulled the "hello-world" image from the Docker Hub.

    (amd64)

 3. The Docker daemon created a new container from that image which runs the

    executable that produces the output you are currently reading.

 4. The Docker daemon streamed that output to the Docker client, which sent it

    to your terminal.

To try something more ambitious, you can run an Ubuntu container with:

 $ docker run -it ubuntu bash

Share images, automate workflows, and more with a free Docker ID:

 https://hub.docker.com/

For more examples and ideas, visit:

 Get started | Docker Docs


http://www.ppmy.cn/ops/136972.html

相关文章

指南: 如何在 MEV 项目中使用 Yul

这对我来说是一个反复出现的故事。我学习了一些 Solidity&#xff0c;发现了一个我想要研究的服务。代码看起来是这样的&#xff1a; Seaport Core: BasicOrderFulfiller.sol Solidity 代码在哪里&#xff1f;人们似乎不再使用普通的 Solidity 代码了 &#x1f972; 这种在智能…

Redis 过期策略和内存淘汰策略

一、过期策略 我们在set key的时候&#xff0c;可以给它设置一个过期时间&#xff0c;比如expire key 60。指定这key60s后过期&#xff0c;60s后&#xff0c;redis是如何处理的&#xff1f; 定时删除&#xff08;Active Expiration&#xff09; 原理&#xff1a;Redis会在后台…

java学习记录12

ArrayList方法总结 构造方法 ArrayList() 构造一个初始容量为 10 的空列表。 ArrayList(int initialCapacity) 构造一个具有指定初始容量的空列表。 实例方法 add(int index, E element) 在此list中的指定位置插入指定元素。 ArrayList<Integer> array…

神经网络问题之:梯度不稳定

梯度不稳定是深度学习中&#xff0c;特别是在训练深度神经网络时常见的一个问题&#xff0c;其本质涉及多个方面。 一、根本原因 梯度不稳定问题的根本原因在于深度神经网络的结构和训练过程中的一些固有特性。随着网络层数的增加&#xff0c;梯度在反向传播过程中会逐层累积变…

《Spring Cloud 微服务》

一、引言 在现代软件开发中&#xff0c;微服务架构已成为主流趋势。Spring Cloud 作为构建微服务架构的强大工具集&#xff0c;提供了一系列组件和解决方案&#xff0c;帮助开发者轻松构建、部署和管理分布式系统。本文将深入介绍 Spring Cloud 的核心概念、主要组件、工作原理…

python画图|无坐标轴自由划线操作fig.add_artist(lines.Line2D()函数

【1】引言 新发现了一种自由划线操作函数&#xff0c;和大家共享。 【2】官网教程 点击下述代码&#xff0c;直达官网&#xff1a; https://matplotlib.org/stable/gallery/misc/fig_x.html#sphx-glr-gallery-misc-fig-x-py 官网代码非常简洁&#xff0c;我进行了解读。 …

fingerprint.js的使用

FingerprintJS 是一个基于 JavaScript 的浏览器指纹识别库&#xff0c;可以通过收集浏览器和设备的多个属性来生成一个独一无二的指纹&#xff08;即一个用户的唯一标识符&#xff09;。这个库的常见用途包括防止欺诈、识别重复用户、分析流量等。 安装 FingerprintJS 1. 通过…

【机器学习】近似分布的熵到底是p(x)lnq(x)还是q(x)lnq(x)?

【1】通信的定义 信息量&#xff08;Information Content&#xff09;是信息论中的一个核心概念&#xff0c;用于定量描述一个事件发生时所提供的“信息”的多少。它通常用随机变量 &#x1d465;的概率分布来定义。事件 &#x1d465;发生所携带的信息量由公式给出&#xff1…