Installing docker on Huawei Kunpeng server arm64
1、 Download of installation package
The required version of the installation package can be downloaded according to the actual needs
https://download.docker.com/linux/ubuntu/dists/xenial/pool/stable/arm64/
2、 Installation procedure
1. Download the installation package
wget https://download.docker.com/linux/ubuntu/dists/xenial/pool/stable/arm64/containerd.io_1.2.6-3_arm64.deb
wget https://download.docker.com/linux/ubuntu/dists/xenial/pool/stable/arm64/docker-ce_19.03.8~3-0~ubuntu-xenial_arm64.deb
wget https://download.docker.com/linux/ubuntu/dists/xenial/pool/stable/arm64/docker-ce-cli_19.03.8~3-0~ubuntu-xenial_arm64.deb
2. Installation
Enter the location where the installation package is downloaded and install it
dpkg -i *.deb
Set boot up
systemctl enable docker
Start docker service
systemctl start docker
View docker status
systemctl status docker