-
安装目录
mkdir /opt/docker && cd /opt/docker
-
安装包下载
yum -y install wget && wget https://download.docker.com/linux/static/stable/x86_64/docker-24.0.7.tgz 注意:https://download.docker.com/linux/static/stable/x86_64 获取最新版本下载链接并替换(docker-xxx.tgz)
-
安装包解压
tar -xvf docker-24.0.7.tgz && cp docker/* /usr/bin/
-
注册服务
sudo tee /usr/lib/systemd/system/docker.service <<-'EOF' [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 EOF
-
镜像源配置
sudo mkdir -p /etc/docker/ sudo tee /etc/docker/daemon.json <<-'EOF' { "registry-mirrors": ["https://8q5nyauc.mirror.aliyuncs.com"] } EOF sudo systemctl daemon-reload sudo systemctl restart docker
-
启动服务
启动:systemctl start docker 停止:systemctl stop docker 重启:systemctl restart docker 开机启动:systemctl enable docker
Docker离线安装
童心同萌2023-11-24 15:47
相关推荐
我们的五年8 分钟前
【Linux系统】进程间通信-System V消息队列island131418 分钟前
【Linux网络#18】:深入理解select多路转接:传统I/O复用的基石mingyuewu1 小时前
MAC环境给docker换源GodGump2 小时前
dbgpt7.0 docker部署维度攻城狮4 小时前
实现在Unity3D中仿真汽车,而且还能使用ros2控制TDD_06289 小时前
【运维】Centos硬盘满导致开机时处于加载状态无法开机解决办法x66ccff9 小时前
vLLM 启动 GGUF 模型踩坑记:从报错到 100% GPU 占用的原因解析William.csj10 小时前
Linux——开发板显示器显示不出来,vscode远程登录不进去,内存满了的解决办法爱编程的王小美10 小时前
Docker基础详解白夜易寒10 小时前
Docker学习之容器虚拟化与虚拟机的区别(day11)