Skip to content

Instantly share code, notes, and snippets.

@thalysonalexr
Last active January 21, 2023 16:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thalysonalexr/c092802bd35d6a5bcadef277544a7b42 to your computer and use it in GitHub Desktop.
Save thalysonalexr/c092802bd35d6a5bcadef277544a7b42 to your computer and use it in GitHub Desktop.
Cron to prune dangling images and trash of docker
#!/bin/sh
0 */2 * * * /usr/bin/docker rmi $(docker images -f dangling=true -a -q) && /usr/bin/docker system prune -f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment