Created
September 12, 2017 23:08
-
-
Save pandeybk/938c43edce691382f816e089437dafae to your computer and use it in GitHub Desktop.
Get list of all images (oneliner) from AWS ecr
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
aws ecr describe-repositories --region=us-east-1 | jq -r '.[] | .[] | .repositoryName' | while read line; do aws ecr list-images --repository-name=$line --region=us-east-1; echo "------------"; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment