GitHub Container Registry(ghcr.io)镜像拉取与加速配置

简介 GitHub Container Registry(ghcr.io)是 GitHub 官方的容器镜像仓库,大量开源项目、AI 项目、K8s 组件(如 Tailscale、Open WebUI、K3s)都将镜像托管于此。镜像地址格式为: ...

2026年7月19日 09:00 · 4 min · 晓瑞杂志

Ubuntu安装docker的方法

检查内核docker支持 1 curl -L https://raw.githubusercontent.com/docker/docker/master/contrib/check-config.sh | /bin/bash /dev/stdin 安装docker 官方安装 参照https://docs.docker.com/engine/install 1: 安装工具 1 2 3 4 5 6 7 sudo apt-get update sudo apt-get install \ apt-transport-https \ ca-certificates \ curl \ gnupg-agent \ software-properties-common H6加载aufs 1 sudo apt-get -y install aufs-tools 2: 安装GPG证书 1 curl -fsSL http://mirrors.aliyun.com/docker-ce/linux/ubuntu/gpg | sudo apt-key add - 3: 写入软件源信息 amd64 1 sudo add-apt-repository "deb [arch=amd64] http://mirrors.aliyun.com/docker-ce/linux/ubuntu $(lsb_release -cs) stable" arm64 1 sudo add-apt-repository "deb [arch=arm64] http://mirrors.aliyun.com/docker-ce/linux/ubuntu $(lsb_release -cs) stable" 4 安装软件 1 2 sudo apt-get update sudo apt-get install docker-ce docker-ce-cli containerd.io 5: 查找特定版本 1 2 sudo apt-get update sudo apt-cache madison docker-ce 阿里云镜像安装 版本选择 H6核心版内核可使用最高版本 ...

2020年1月14日 11:04 · 2 min · 晓瑞杂志