arm 中标麒麟离线安装docker

arm 中标麒麟离线安装docker

  1. 下载
https://download.docker.com/linux/static/stable/aarch64/docker-18.09.9.tgz
  1. 解压移动

    tar zxvf docker-18.09.9.tgz
    sudo cp docker/* /usr/bin/
    /usr/lib/systemd/system/docker.service
    
  2. 把docker注册为服务,创建文件/usr/lib/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 --selinux-enabled=false --insecure-registry=127.0.0.1
    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
    
  1. 设置镜像源,创建配置文件: /etc/docker/daemon.json

    {
      "registry-mirrors": ["http://hub-mirror.c.163.com"]
    }
    
  1. 启动服务+开机自启

    chmod +x /usr/lib/systemd/system/docker.service  
    systemctl daemon-reload
    systemctl start docker
    systemctl status docker
    systemctl enable docker
    
  1. 安装docker-compose

    wget https://github.com/docker/compose/releases/download/v2.11.1/docker-compose-linux-aarch64
    mv docker-compose-linux-aarch64 docker-compose
    mv docker-compose /usr/bin/
    chmod +x /usr/bin/docker-compose
    docker-compose -v
    
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容