-
安装目录
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
相关推荐
invicinble3 小时前
对linux形成认识小Pawn爷3 小时前
14.VMmare安装ubuntu半桔3 小时前
【IO多路转接】高并发服务器实战:Reactor 框架与 Epoll 机制的封装与设计逻辑engchina3 小时前
WSL Ubuntu で Kubernetes v1.34.2 + Docker 環境を構築するHABuo4 小时前
【linux文件系统】磁盘结构&文件系统详谈Howrun7774 小时前
关于Linux服务器的协作问题小白同学_C5 小时前
Lab3-page tables && MIT6.1810操作系统工程【持续更新】十年磨一剑~6 小时前
Linux程序接收到sigpipe信号崩溃处理geshifei6 小时前
Sched ext回调3——select_cpu(linux 6.15.7)代码游侠6 小时前
C语言核心概念复习——网络协议与TCP/IP