We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ghcr.io/monlor/xiaoya-alist:latest
The text was updated successfully, but these errors were encountered:
Check the progress
registry.cn-hangzhou.aliyuncs.com/linden_mirror/xiaoya-alist:latest
20240606之后,应该加速的方式都逐步不可用了 获取阿里云镜像加速地址 根据提示配置镜像加速
sudo mkdir -p /etc/docker sudo tee /etc/docker/daemon.json <<-'EOF' { "registry-mirrors": ["https://xxxx.mirror.aliyuncs.com"] } EOF sudo systemctl daemon-reload sudo systemctl restart docker
将镜像信息部分的的两个文件保存到本地 然后愉快的使用以下脚本跑起来
适用于无法拉取外网地址或拉取外网地址缓慢
img=$(cat dockerhub-image.yml) for i in ${img[@]} do tagName=$(echo $i | awk -F "/" '{print $NF}'); docker pull $i; sourceTag=$(cat images-init.yml | grep $tagName); docker tag $i $sourceTag; done
适用于内网环境需要将公网镜像打包到内网镜像仓库
img=$(cat dockerhub-image.yml) for i in ${img[@]} do tagName=$(echo $i | awk -F "/" '{print $NF}'); filePrefix=$(echo $tagName | awk -F ":" '{print $1}'); fileSuffix=$(echo $tagName | awk -F ":" '{print $NF}'); fileName=$filePrefix--$fileSuffix.gz docker pull $i; mkdir localImage || echo 0 docker save $i -o localImage/$fileName done # tar -zcf localImage.tar.gz localImage
# 将压缩好的镜像文件放在localImage目录 img=$(ls localImage) # 本地仓库信息 LOCAL_REGISTRY 和 LOCAL_NAMESPACE 需要指定 # 如镜像local.harbor.dev/ingress-nginx/kube-webhook-certgen:v1.1.1 # LOCAL_REGISTRY则为:local.harbor.dev # LOCAL_NAMESPACE则为:ingress-nginx LOCAL_REGISTRY= LOCAL_NAMESPACE= # 首先解压镜像 for i in ${img[@]} do docker load -i $i; done # 解压完成后,重新打tag并且上传指定仓库,需要确保需要有对应仓库的权限 img=$(cat dockerhub-image.yml) for i in ${img[@]} do tagName=$(echo $i | awk -F "/" '{print $NF}'); specialTag=$LOCAL_REGISTRY/$LOCAL_NAMESPACE/$tagName; docker tag $i $specialTag; docker push $specialTag; done
Sorry, something went wrong.
No branches or pull requests
ghcr.io/monlor/xiaoya-alist:latest
The text was updated successfully, but these errors were encountered: