赞
踩
[root@localhost ~]# cat /etc/kylin-release
Kylin Linux Advanced Server release V10 (Sword)
[root@localhost ~]# uname -p
x86_64
服务器如果是鲲鹏,架构是aarch64
aarch64
注意:该系统是aarch64架构,dockerhub上的大部分镜像都是x86_64架构下的,在使用dockerhub等平台的镜像时,一定要注意其架构是否支持aarch64!
内核版本、iptables版本
[root@localhost ~]# uname -r
4.19.90-24.4.v2101.ky10.x86_64
[root@localhost ~]#
[root@localhost ~]# iptables --version
iptables v1.8.5 (legacy)
[root@localhost ~]#
官网下载地址:https://download.docker.com/linux/static/stable/
x86架构
下载安装包
wget https://download.docker.com/linux/static/stable/x86_64/docker-24.0.2.tgz
解压
tar -xvzf docker-24.0.2.tgz
移动解压出来的二进制文件到 /usr/bin 目录中
mv docker/* /usr/bin/
配置添加 systemd
编辑docker的系统服务文件
vi /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 ExecStart=/usr/bin/dockerd ExecReload=/bin/kill -s HUP $MAINPID LimitNOFILE=infinity LimitNPROC=infinity TimeoutStartSec=0 Delegate=yes KillMode=process Restart=on-failure StartLimitBurst=3 StartLimitInterval=60s [Install] WantedBy=multi-user.target
重新加载和重启docker
systemctl daemon-reload
systemctl restart docker
下载安装包
wget https://download.docker.com/linux/static/stable/aarch64/docker-20.10.7.tgz
解压
tar -zxvf docker-20.10.7.tgz
移动解压出来的二进制文件到 /usr/bin 目录中
mv docker/* /usr/bin/
配置添加 systemd
编辑docker的系统服务文件
vi /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 ExecStart=/usr/bin/dockerd ExecReload=/bin/kill -s HUP $MAINPID LimitNOFILE=infinity LimitNPROC=infinity TimeoutStartSec=0 Delegate=yes KillMode=process Restart=on-failure StartLimitBurst=3 StartLimitInterval=60s [Install] WantedBy=multi-user.target
重新加载和重启docker
systemctl daemon-reload
systemctl restart docker
查看docker详细信息
docker info
docker的使用与x86下主流Linux发行版本(如CentOS、Fedora、Ubuntu、Debian)在使用上没有差异,需要注意的时由于CPU架构时arm64,因此,需要采用支持arm64架构的镜像才能正常使用。
不支持arm64的镜像,可以寻找第三方支持arm64架构的镜像,或者自己在银河麒麟桌面系统V10上基于centos或者alpine镜像自行编译制作一个支持arm64版本的mysql docker镜像不支持
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。