一、银河麒麟Arm64安装docker

1、docker 安装包地址:

https://download.docker.com/linux/static/stable

wget -c https://download.docker.com/linux/static/stable/aarch64/docker-18.09.3.tgz

2、解压,然后将docker目录下文件拷贝到/usr/bin里

tar -xf docker-18.09.3.tgz mv docker/* /usr/bin/

3、添加启动服务

vi /lib/systemd/system/docker.service

###[Unit]Description=Docker Application Container EngineDocumentation=https://docs.docker.comAfter=network-online.target docker.socket firewalld.serviceWants=network-online.targetRequires=docker.socket[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 dockerExecStart=/usr/bin/dockerd -H fd://ExecReload=/bin/kill -s HUP $MAINPIDLimitNOFILE=1048576# Having non-zero Limit*s causes performance problems due to accounting overhead# in the kernel. We recommend using cgroups to do container-local accounting.LimitNPROC=infinityLimitCORE=infinity# Uncomment TasksMax if your systemd version supports it.# Only systemd 226 and above support this version.#TasksMax=infinityTimeoutStartSec=0# set delegate yes so that systemd does not reset the cgroups of docker containersDelegate=yes# kill only the docker process, not all processes in the cgroupKillMode=process# restart the docker process if it exits prematurelyRestart=on-failureStartLimitBurst=3StartLimitInterval=60s[Install]WantedBy=multi-user.target

4、新建编辑docker.socket文件

[Unit]Description=Docker Socket for the APIPartOf=docker.service[Socket]ListenStream=/var/run/docker.sockSocketMode=0660SocketUser=rootSocketGroup=docker[Install]WantedBy=sockets.target

5、新建docker用户和组

groupadd docker useradd docker -g docker

6、启动docker服务

systemctl daemon-reload

systemtl enabledocker

systemtl start docker

7、查看docker版本

docker version

二、安装docker-compose

待补充