Skip to content

Instantly share code, notes, and snippets.

@urodoz
Last active September 12, 2022 18:17
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save urodoz/8ff64c77ecfb27c7cb32 to your computer and use it in GitHub Desktop.
Save urodoz/8ff64c77ecfb27c7cb32 to your computer and use it in GitHub Desktop.
Cleans the old images and exited containers
# Clean the exited containers
docker rm $(sudo docker ps -a | grep Exit | cut -d ' ' -f 1)
# Clean the untagged images (or old images)
docker rmi $(docker images | tail -n +2 | awk '$1 == "<none>" {print $'3'}')
# On Docker 1.9+ you can remove the orphan volumes with the next command
docker volume rm $(docker volume ls -qf dangling=true)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment