请选择 进入手机版 | 继续访问电脑版

运维技术分享平台

 找回密码
 立即注册
首页
查看: 1337|回复: 0

生产离线安装Docker

[复制链接]

296

主题

305

帖子

1693

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
1693
发表于 2022-9-1 09:37:52 | 显示全部楼层 |阅读模式
在内网环境下,一般不能联网能在线部署,这时候就需要以离线的方式安装docker。本节内容主要总结离线安装docker的步骤。

1. 下载docker安装包
官方地址:https://download.docker.com/linu ... /docker-19.03.9.tgz
2. 解压缩

# tar -zxvf docker-19.03.9.tgz

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

# cp -p docker/* /usr/bin


4. 将docker注册为系统服务

① 在/usr/lib/systemd/system/目录下,创建docker.service文件
② 编辑docker.service文件

# 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

查看docker状态

# systemctl status docker


回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

首页

手机版|关于自己|运维技术分享平台

GMT+8, 2024-3-29 02:17 , Processed in 0.068058 second(s), 17 queries .

Powered by Discuz! X3.4

© 2001-2017 Comsenz Inc. Template By 【未来科技】【 www.wekei.cn 】

快速回复 返回顶部 返回列表