Skip to content

Instantly share code, notes, and snippets.

@BrunIF
Created August 4, 2020 14:32
Show Gist options
  • Save BrunIF/3d291b2d8e16938223be2425cab24a0d to your computer and use it in GitHub Desktop.
Save BrunIF/3d291b2d8e16938223be2425cab24a0d to your computer and use it in GitHub Desktop.
AWS snippets
# 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