当前位置:首页 > linux运维

docker 安装

14324472932年前 (2024-07-29)linux运维1282

1.卸载旧版docker

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

2.运行环境安装
通过如下命令进行运行环境的安装包:

yum install -y yum-utils

3.配置下载Docker的yum源

#国外的地址
yum-config-manager \
    --add-repo \
    https://download.docker.com/linux/centos/docker-ce.repo 
    
# 设置阿里云的Docker镜像仓库
yum-config-manager \
    --add-repo \
    https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo

4.更新yum软件包索引

yum makecache fast

5.安装Docker引擎

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

6.如果过程中一直报差找不到镜像,用该命令清理下yum包:

yum clean all

7.启动docker

systemctl start docker
# 查看当前版本号,是否启动成功
docker version
# 设置开机自启动
systemctl enable docker

扫描二维码推送至手机访问。

版权声明:本文由爱开发博客发布,如需转载请注明出处。

本文链接:https://www.lovekf.cn/?id=28

标签: Docker
分享给朋友:

“docker 安装” 的相关文章

Xray VLESS+TCP+XTLS/TLS+Nginx+WebSocket 一键安装脚本 By wulabing

Xray VLESS+TCP+XTLS/TLS+Nginx+WebSocket 一键安装脚本 By wulabing

Xray 基于 Nginx 的 VLESS + XTLS 一键安装脚本,支持VLESS + TCP + TLS + Nginx + VLESS + TCP + XTLS / TLS + Nginx等多种组合一键安装,系统支持Debian 9+ / Ubuntu 18.04+ / Centos7+ /…

aria2配置文件和bt-tracker定期更新脚本

# # https://github.com/P3TERX/aria2.conf # File name:aria2.conf # Description: Awesome Aria2 configuration file # Version: 2021.09.15 # # Copyright (c…

CentOS优化手册

1. 调整 journal 存储设置( 解决systemd 或者 systemd-journald 进程占用大量 CPU 或内存资源的情况)编辑 /etc/systemd/journald.conf 文件,并更改 Storage 参数。例如,将其从 persistent 改为 volatile 或…

nginx 和frp共存端口转发规则

```bash server { listen 80; listen [::]:80; server_name *.lovekf.cn; location / { proxy_pass http://127.0.0.1:81; proxy_redirect http://$host/ http:/…

云豹直播搭建过程中node聊天接口无法使用的修复方案

1.云豹node服务原始依赖于http协议,目前浏览器已经不支持http和https混合使用,所以需要为node.js支持https. 解决思路如下: 1.使用nginx进行端口转发,将域名转发至云豹的node.js端口19967端口。 2.如何更新ssl证书(宝塔创建一个站点,域名为聊天服务器地址…

发表评论

访客

◎欢迎参与讨论,请在这里发表您的看法和观点。