Created
July 27, 2022 08:18
-
-
Save lloiacono/769faf597fe6ead20e33292e25be3265 to your computer and use it in GitHub Desktop.
Delete ECR images keeping only the last N more recent
This file contains 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
REPO=$1 | |
KEEP_IMAGES=$2 # number of images you want to remain | |
aws ecr describe-images --repository-name $REPO --query 'imageDetails[]' \ | |
| jq --raw-output 'sort_by(.imagePushedAt) | reverse | .[].imageDigest' \ | |
| awk "NR > ${KEEP_IMAGES}" \ | |
| xargs -I{} aws ecr batch-delete-image --repository-name $REPO --image-ids imageDigest={} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment