RoninZc

RoninZc 的个人博客

随便写写~

K8Sv1.24.0 containerd 安装教程

1、卸载旧版本 1 sudo apt remove docker docker-engine docker.io containerd runc 2、安装相关依赖包 1 sudo apt update && sudo apt install -y apt-transport-https ca-certificates curl gnupg lsb-release 3、添加证书&镜像 官方镜像 1 2 3 4 5 6 # 官方镜像 curl -fsSL https://download.docker.com/linux/ubuntu/gpg

Ubuntu ARM Docker 安装

1、卸载可能存在的旧版本 1 sudo apt remove docker docker-engine docker-ce docker.io 2、安装依赖使 apt 可通过 HTTPS 下载包 1 sudo apt update && apt install -y apt-transport-https ca-certificates curl software-properties-common 3、添加 docker 密钥 3.1、阿里云 docker 源 1 curl -fsSL http://mirrors.aliyun.com/docker-ce/linux/ubuntu/gpg | sudo apt-key
0%