Installing Docker and Docker-Compose on ARM64 Servers
1. Download the docker-ce package $ wget https://mirrors.nju.edu.cn/docker-ce/linux/static/stable/aarch64/docker-27.1.2.tgz 2. Extract the files and copy them to /usr/local/bin $ tar -xf docker-27.1.2.tgz $ cp docker/* /usr/local/bin $ which docker 3. Create the docker.service file $ cat > /etc/systemd/system/docker.service <<EOF [Unit] Description=Docker Application Container Engine Documentation=https://docs.docker.com After=network-online.target firewalld.service Wants=network-online.target [Service] Type=notify ExecStart=/usr/bin/dockerd ExecReload=/bin/kill -s HUP $MAINPID LimitNOFILE=65535 … Read more