Docker离线安装

  1. 安装目录

    复制代码
    mkdir /opt/docker && cd /opt/docker
  2. 安装包下载

    复制代码
    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)
  3. 安装包解压

    复制代码
    tar -xvf docker-24.0.7.tgz && cp docker/* /usr/bin/
  4. 注册服务

    复制代码
    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
  5. 镜像源配置

    复制代码
    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
  6. 启动服务

    复制代码
    启动:systemctl start docker
    停止:systemctl stop docker
    重启:systemctl restart docker
    开机启动:systemctl enable docker
相关推荐
红龙创客4 分钟前
Linux系统编程之——多文件工程管理与CMake实战指南
linux·运维·服务器
txzz888815 分钟前
CentOS-Stream-10 系统安装与登录
linux·运维·服务器·centos
fufu031119 分钟前
Linux环境下的C语言编程(四十一)
linux·c语言·算法
yuxuan669920 分钟前
【Docker】使用docker启动禅道出现mysql.sock 文件已经存在的bug
mysql·docker·centos·bug
zfxwasaboy1 小时前
BUG: failure at drivers/pci/msi.c:376/free_msi_irqs()!
linux·c语言·bug
文军的烹饪实验室1 小时前
【无标题】unix:///tmp/supervisor.sock no such file
linux·运维·unix
yscript1 小时前
GPU分配BUG: Duplicate GPU detected : rank 1 and rank 0 both on CUDA device d5000
linux·运维·服务器·vscode·bug
Watermelo6171 小时前
【简单快速】windows中docker数据如何从C盘迁移到其他盘
java·运维·docker·容器·运维开发·devops·空间计算
james bid1 小时前
MacBook Pro 2015 上 XUbuntu 24.04 启用 eGPU (GeForce GTX 1080 Ti) 和核显黑屏问题解决
linux·ubuntu·macos·cuda·egpu
龙吟游戏1 小时前
Ubuntu Server 25.10安装
linux·运维·ubuntu