aws ecr list-images

From wikieduonline
Jump to navigation Jump to search

https://awscli.amazonaws.com/v2/documentation/api/latest/reference/ecr/list-images.html

Examples[edit]

aws ecr list-images --repository-name your_repo/name
{
   "imageIds": [
       {
           "imageDigest": "sha256:9c60b65baxxxx54275e090c5bb7f0f0af9788",
           "imageTag": "rev-1b0befeba91d0d7bb223212266d2cfb1de500gg"
       }
   ]
}
for REPOS in $(aws ecr describe-repositories | grep repositoryName | cut -d'"' -f4); do echo $REPOS; aws ecr list-images --repository-name $REPOS --no-paginate; done

Errors[edit]

An error occurred (RepositoryNotFoundException) when calling the ListImages operation: The repository with name '0123456678.dkr.ecr.eu-west-1.amazonaws.com/xxxxx' does not exist in the registry with id '817545123456'

Related[edit]

See also[edit]

Advertising: