Skip to content

Instantly share code, notes, and snippets.

@lloiacono
Created July 27, 2022 08:18
Show Gist options
  • Save lloiacono/769faf597fe6ead20e33292e25be3265 to your computer and use it in GitHub Desktop.
Save lloiacono/769faf597fe6ead20e33292e25be3265 to your computer and use it in GitHub Desktop.
Delete ECR images keeping only the last N more recent
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