Skip to content

Instantly share code, notes, and snippets.

@arose13
Created October 5, 2017 15:43
Show Gist options
  • Save arose13/d5d76092298ceabf86012ce79f2ef6ca to your computer and use it in GitHub Desktop.
Save arose13/d5d76092298ceabf86012ce79f2ef6ca to your computer and use it in GitHub Desktop.
Docker Cleanup Commands
# Kill all running containers
sudo docker kill $(sudo docker ps -q)
# Delete all stopped containers (This is the step that frees the most disk space)
sudo docker rm $(sudo docker ps -a -q)
# Delete all docker images
sudo docker rmi $(sudo docker images -q)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment