Skip to content

Instantly share code, notes, and snippets.

@mattmccarty
Created February 19, 2020 16:16
Show Gist options
  • Save mattmccarty/b633a91aa99b916a45fdb46d47e433d6 to your computer and use it in GitHub Desktop.
Save mattmccarty/b633a91aa99b916a45fdb46d47e433d6 to your computer and use it in GitHub Desktop.
docker-clean-resources
# Clean docker images older than 30 days
# Source: https://stackoverflow.com/questions/50737059/how-to-remove-docker-images-which-created-7-days-ago-automatically/50737737#50737737
docker image prune -a --filter "until=$(date +'%Y-%m-%dT%H:%M:%S' --date='-30 days')"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment