随心一记

一二三四五,上山打老鼠


  • 首页

  • 归档

  • 标签
ywcsb

ywcsb

游戏可以不玩,小说不能不看。

153 日志
3 分类
41 标签
RSS
GitHub 知乎 随心一记
Links
  • 随心一记
  • 追梦人物的
  • MSDN

Linux下离线安装Docker最新版本

发表于 2019-10-01 | 阅读 68 | 分类于 系统运维 |
基础环境
  1. Docker版本:最新版本 官方下载地址: https://download.docker.com/linux/static/stable/x86_64/

  2. 官方参考文档:https://docs.docker.com/install/linux/docker-ce/binaries/#install-static-binaries

Docker安装
  • 解压

    tar -xvf /path/to/<FILE>.tar.gz
    
    • 将解压出来的docker文件内容移动到 /usr/bin/ 目录下 bash cp docker/* /usr/bin/
  • 将docker注册为service

    vim /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 bash chmod +x /etc/systemd/system/docker.service systemctl daemon-reload systemctl start docker systemctl enable docker.service
觉得不错,支持一下!
geerniya WeChat Pay

微信打赏

geerniya Alipay

支付宝打赏

# docker

发表评论

共 0 条评论

    暂无评论
© 2018 - 2026 ywcsb
冀ICP备17022045号-1
Supported by 腾讯云