redhat安装docker 24.0.7

1、下载docker镜像包

wget https://download.docker.com/linux/static/stable/x86_64/docker-24.0.7.tgz

2、解压

tar -xvf docker-24.0.7.tgz

3、解压的docker文件夹全部移动至/usr/bin目录

cd docker

cp -p docker/* /usr/bin

4、注册服务

vi /usr/lib/systemd/system/docker.service

添加 下面内容

[Unit]

Description=Docker Application Container Engine

Documentation=http://docs.docker.com

After=network.target docker.socket

[Service]

Type=notify

EnvironmentFile=-/run/flannel/docker

WorkingDirectory=/usr/local/bin

ExecStart=/usr/bin/dockerd \

-H tcp://0.0.0.0:4243 \

-H unix:///var/run/docker.sock \

--selinux-enabled=false \

--log-opt max-size=1g

ExecReload=/bin/kill -s HUP $MAINPID

Having non-zero Limit*s causes performance problems due to accounting overhead

in the kernel. We recommend using cgroups to do container-local accounting.

LimitNOFILE=infinity

LimitNPROC=infinity

LimitCORE=infinity

Uncomment TasksMax if your systemd version supports it.

Only systemd 226 and above support this version.

#TasksMax=infinity

TimeoutStartSec=0

set delegate yes so that systemd does not reset the cgroups of docker containers

Delegate=yes

kill only the docker process, not all processes in the cgroup

KillMode=process

Restart=on-failure

[Install]

WantedBy=multi-user.target

5、重启守护进程

systemctl daemon-reload

systemctl start docker

systemctl enable docker

6、检查docker服务是否正常

systemctl status docker

相关推荐
cmgdxrz14 分钟前
金融项目实战 06|Python实现接口自动化——日志、实名认证和开户接口
运维·金融·自动化
Rinleren40 分钟前
源码编译安装httpd 2.4,并提供系统服务管理脚本
linux·运维·服务器
SafePloy安策40 分钟前
密码机服务器在云计算中的应用与挑战
运维·服务器·云计算
kandra7771 小时前
KMP从零创业 Live Show(4)-Docker
python·docker
虾稿1 小时前
[手机Linux] ubuntu 错误解决
linux·运维·服务器
linux_lsh1 小时前
opengauss数据库的日常运维操作
运维·数据库
迷茫运维路1 小时前
Kubernetes1.28 编译 kubeadm修改证书有效期到 100年.并更新k8s集群证书
云原生·容器·kubernetes
福大大架构师每日一题1 小时前
1.5 安装Kuboard在页面上熟悉k8s集群
云原生·容器·kubernetes
明月心9521 小时前
docker swarm 部署问题 和 指定节点部署服务
运维·docker·容器
大房身镇、王师傅2 小时前
Centos9 + Docker 安装 MySQL8.4.0 + 定时备份数据库到本地
docker·centos9·mysql8.4.0·备份mysql数据库