0


openeuler下载docker

https://mirrors.tuna.tsinghua.edu.cn/docker-ce/linux/rhel/9/x86_64/stable/ #清华的网址

https://mirrors.aliyun.com/docker-ce/linux/rhel/9/x86_64/stable/ #阿里云的网址

开始配置

vim /etc/yum.repos.d/docker-ce.repo #写仓库,我这里写的是阿里云的,清华的也可以
[docker-ce]
name=docker
baseurl=https://mirrors.aliyun.com/docker-ce/linux/rhel/9/x86_64/stable/
gpgcheck=0

yum makecache #生成 Yum 缓存

dnf install docker-ce --downloadonly --downloaddir=/mnt #通过软件仓库下载软件但不安装,下载到/mnt里面

cd /mnt/

mkdir docker

mv *.rpm docker #拷贝到docker文件夹中

cd docker/ #此目录只是一个存放rpm软件包的目录并不是软件仓库

dnf whatprovides */createrepo #采集rpm数据的软件

dnf install createrepo_c-0.17.6-3.oe2203sp4.x86_64 -y #下载createrepo

createrepo -v /mnt/docker/ #扫描软件并生成软件仓库的数据

vim /etc/yum.repos.d/docker-ce.repo #再次进入,修改仓库
[docker-ce]
name=docker
baseurl=file:///mnt/docker #软件包放哪里的就写哪里,我之前写的/mnt/docker下面
gpgcheck=0

结果展示

ls /mnt/docker/ #查看放软件包的那个文件夹

后面你可以选择安装,前面的过程都是下载配置过程

标签: docker 容器 运维

本文转载自: https://blog.csdn.net/luohailin_/article/details/140856348
版权归原作者 luohailin_ 所有, 如有侵权,请联系我们删除。

“openeuler下载docker”的评论:

还没有评论