gpt4 book ai didi

aws-cli - 如何从 ECR Registry 列出图像

转载 作者:行者123 更新时间:2023-12-04 17:26:36 27 4
gpt4 key购买 nike

我想列出 ECR 注册表中的图像,但出现一些错误。有人可以提供解决方案吗?

aws ecr list-images --repository-name <Repository_Name>
下面有错误
An error occurred (RepositoryNotFoundException) when calling the 
ListImages operation: The repository with name '<Repository_Name>' does
not exist in the registry with id 'ID_Name'

注意:我想列出存储库中的所有图像,但我不想使用过滤器列出图像。

最佳答案

从错误来看,您似乎插入了无效的存储库名称,或者您正在寻找错误的区域

aws ecr list-images --repository-name VALID_REPO_NAME --region us-west-2
或者您可以使用此脚本从所有存储库中获取所有图像。
#!/bin/sh
REPO_LIST=$(aws ecr describe-repositories --query "repositories[].repositoryName" --output text --region us-west-2);
for repo in $REPO_LIST; do
echo "list image for $repo"
aws ecr list-images --repository-name $repo --region us-west-2
done
aws-cli-cheatsheet

关于aws-cli - 如何从 ECR Registry 列出图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62830834/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com