Skip to content

Instantly share code, notes, and snippets.

@chertov
Created July 24, 2018 14:15
Show Gist options
  • Save chertov/b54176a60ca48b916c5f299970e3cd87 to your computer and use it in GitHub Desktop.
Save chertov/b54176a60ca48b916c5f299970e3cd87 to your computer and use it in GitHub Desktop.
# Clean the exited containers
docker rm $(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'}')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment