Docker - 离线安装

  1. 系统环境

    1
    2
    3
    cat /etc/redhat-release
     
    CentOS Linux release 7.2.1511 (Core)

     

  2. 下载Docker安装包

    1
    2
    可以按照自己的需要下载安装包,下载地址为:
    https://download.docker.com/linux/static/stable/x86_64/

     我这里的安装包为:https://download.docker.com/linux/static/stable/x86_64/docker-18.06.3-ce.tgz

  3. 上传解压

    1
    tar -xvf docker-18.06.3-ce.tgz

     

  4. 将解压出来的docker文件内容移动到 /usr/bin/ 目录下

    1
    cp docker/* /usr/bin/

     

  5. 将docker注册为service

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    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

     

  6. 添加文件权限并启动docker

    1
    chmod +x /etc/systemd/system/docker.service

     

  7. 重载unit配置文件

    1
    systemctl daemon-reload

     

  8. 启动Docker

    1
    systemctl start docker

     

  9. 设置开机自动启动

    1
    systemctl enable docker.service

     

  10. 验证

    1
    2
    3
    4
    5
    6
    #查看Docker状态
    systemctl status docker
     
    #查看Docker版本
     
    docker version 或者 docker info

     

     

posted @   北京流浪儿  阅读(44)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· 单线程的Redis速度为什么快?
· 展开说说关于C#中ORM框架的用法!
· Pantheons:用 TypeScript 打造主流大模型对话的一站式集成库
点击右上角即可分享
微信分享提示