linux 离线安装docker

测试服务器:银河麒麟V10 x86_64
注意:推荐使用国内的镜像站下载,因为官网不挂梯子无法访问,我用的是清华大学开源软件镜像站

一、下载离线包:

官网下载docker离线包

下载地址:https://download.docker.com/linux/static/stable/

清华大学docker安装包

下载地址:https://mirrors.tuna.tsinghua.edu.cn/docker-ce/linux/static/stable

根据自己的操作系统选择合适的镜像,如下图所示:

我本地的虚拟机是x86_64位的,所以选择x86_64目录找到对应的版本下载

下载完成后,可以放到服务器上,进行安装操作。

二、执行安装操作

使用 tar -zxvf docker-20.10.10.tgz 命令进行解压操作,解压后会在当前目录下生成docker文件

执行如下命令把docker相关文件拷贝到/usr/bin目录

sudo cp -p docker/* /usr/bin

创建docker.service文件,实现开机自启动

touch docker.service

然后把如下内容,贴到docker.service文件中

#######################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

########################docker.service#################################

把docker.service 拷贝到 /etc/systemd/system/ 目录。命令如下:

sudo cp docker.service /etc/systemd/system/

对docker.service设置权限,命令如下:

sudo chmod +x /etc/systemd/system/docker.service

重新加载某个服务的配置文件,命令如下:

sudo systemctl daemon-reload

启动docker,命令如下:

sudo systemctl start docker

查看是否安装成功

sudo docker --version

相关推荐
月清晖11 分钟前
centos更换yum源、安装Docker和换源
linux·docker·centos
【 教主 】34 分钟前
<Linux> 多线程
linux·运维·服务器
技术探索者1 小时前
Shell:如何判断两个字符串相等
linux·shell
Slow1 小时前
Linux静态库的制作
linux·c语言
一个梦想过上五休二生活的男人1 小时前
Firewalld防火墙(二)
linux·服务器·数据库
一只猿Hou1 小时前
【logback-spring配置不生效,开发环境和生产环境配置不同输出级别】
linux·spring·logback
Mark White2 小时前
软连接迁移 Docker 的默认安装(存储)目录
docker
gopher95112 小时前
Linux多进程和多线程(五)进程间通信-消息队列
linux·服务器·c语言·开发语言·进程
杨江2 小时前
服务器上VMWare Workstation虚拟机声卡支持
运维·服务器
qq1778036232 小时前
CSOL老是服务器链接中断怎么解决
运维·服务器·网络·ddos