Docker - 离线安装
-
系统环境
123cat /etc/redhat-release
CentOS Linux release 7.2.1511 (Core)
-
下载Docker安装包
12可以按照自己的需要下载安装包,下载地址为:
https:
//download.docker.com/linux/static/stable/x86_64/
我这里的安装包为:https://download.docker.com/linux/static/stable/x86_64/docker-18.06.3-ce.tgz
-
上传解压
1tar -xvf docker-18.06.3-ce.tgz
-
将解压出来的docker文件内容移动到 /usr/bin/ 目录下
1cp docker/* /usr/bin/
-
将docker注册为service
123456789101112131415161718192021222324252627282930313233vim /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
-
添加文件权限并启动docker
1chmod +x /etc/systemd/system/docker.service
-
重载unit配置文件
1systemctl daemon-reload
-
启动Docker
1systemctl start docker
-
设置开机自动启动
1systemctl enable docker.service
-
验证
123456#查看Docker状态
systemctl status docker
#查看Docker版本
docker version 或者 docker info
分类:
Docker
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· 单线程的Redis速度为什么快?
· 展开说说关于C#中ORM框架的用法!
· Pantheons:用 TypeScript 打造主流大模型对话的一站式集成库