Linux 离线安装 Docker

一、安装 docker

1. 下载 Docker 安装包

https://download.docker.com/linux/static/stable/x86_64/

2. 解压安装包

powershell 复制代码
tar -xvf docker-27.1.0.tgz
mv docker/* /usr/bin/

3. 将 docker 注册为 service 服务

powershell 复制代码
vim /etc/systemd/system/docker.service

docker.service

powershell 复制代码
[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

4. 启动docker

powershell 复制代码
chmod +x /etc/systemd/system/docker.service
systemctl daemon-reload
systemctl start docker

5. 查看版本号

powershell 复制代码
systemctl status docker
docker -v

6. 设置开机自启

powershell 复制代码
systemctl enable docker.service

二、镜像保存和加载

1. 保存镜像

powershell 复制代码
docker save -o 镜像保存的名字和位置 镜像名:TAG

docker save -o nginx.tar nginx:latest

2. 加载镜像

powershell 复制代码
docker load -i 镜像保存的名字和位置

docker load -i nginx.tar
相关推荐
荒Huang24 分钟前
Linux挖矿病毒(kswapd0进程使cpu爆满)
linux·运维·服务器
MonkeyKing_sunyuhua39 分钟前
ubuntu22.04 docker-compose安装postgresql数据库
数据库·docker·postgresql
追风林1 小时前
mac m1 docker本地部署canal 监听mysql的binglog日志
java·docker·mac
€☞扫地僧☜€2 小时前
docker 拉取MySQL8.0镜像以及安装
运维·数据库·docker·容器
茶馆大橘2 小时前
微服务系列六:分布式事务与seata
分布式·docker·微服务·nacos·seata·springcloud
hjjdebug2 小时前
linux 下 signal() 函数的用法,信号类型在哪里定义的?
linux·signal
其乐无涯2 小时前
服务器技术(一)--Linux基础入门
linux·运维·服务器
Diamond技术流2 小时前
从0开始学习Linux——网络配置
linux·运维·网络·学习·安全·centos
斑布斑布2 小时前
【linux学习2】linux基本命令行操作总结
linux·运维·服务器·学习
Spring_java_gg3 小时前
如何抵御 Linux 服务器黑客威胁和攻击
linux·服务器·网络·安全·web安全