美文网首页
redhat7.5 离线安装docker

redhat7.5 离线安装docker

作者: 大橙子0717 | 来源:发表于2021-11-05 16:01 被阅读0次

linux 离线安装docker

  • 下载镜像:

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

  • 上传解压
tar -xvf docker-20.10.9.tgz 
将docker目录下内容拷贝到。/usr/bin
cp docker/* /usr/bin
  • 注册docker服务:

vi /etc/systemd/system/docker.service

[Unit]

Description=Docker Application Container Engine

Documentation=https://docs.docker.com

After=network-online.target firewalld.service

Wants=network-online.target


[Service]

Type=notify

# the default is not to use systemd for cgroups because the delegate issues still

# exists and systemd currently does not support the cgroup feature set required

# for containers run by docker

ExecStart=/usr/bin/dockerd

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 the docker process if it exits prematurely

Restart=on-failure

StartLimitBurst=3

StartLimitInterval=60s
[Install]

WantedBy=multi-user.target</pre>
  • 设置开机自启动

systemctl enable docker

  • 启动:
启动:systemctl start docker
停止:systemctl stop docker
状态:systemctl status docker
重启:systemctl restart docker

相关文章

网友评论

      本文标题:redhat7.5 离线安装docker

      本文链接:https://www.haomeiwen.com/subject/dzerzltx.html