Skip to content

Instantly share code, notes, and snippets.

@alekpopovic
Last active March 1, 2016 13:38
Show Gist options
  • Save alekpopovic/5068dad3399554500cde to your computer and use it in GitHub Desktop.
Save alekpopovic/5068dad3399554500cde to your computer and use it in GitHub Desktop.
docker stop $(docker ps -a -q)
docker rm $(docker ps -a -q)
#!/bin/bash
# Delete all containers
docker rm $(docker ps -a -q)
# Delete all images
docker rmi $(docker images -q)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment