Created
February 19, 2020 16:16
-
-
Save mattmccarty/b633a91aa99b916a45fdb46d47e433d6 to your computer and use it in GitHub Desktop.
docker-clean-resources
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
# 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