Created
August 4, 2020 14:32
-
-
Save BrunIF/3d291b2d8e16938223be2425cab24a0d to your computer and use it in GitHub Desktop.
AWS snippets
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
# Show Time (UNIX), Digest (images hash), tag. Sort by time | |
aws ecr describe-images --repository-name "ecr-repository-name" | jq -r '.imageDetails[] | (.imagePushedAt|tostring) + " " + .imageDigest + " " + .imageTags[0]' | sort |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment