Skip to content

Instantly share code, notes, and snippets.

@okram999
Last active May 28, 2017 18:03
Show Gist options
  • Save okram999/2dc5ea49f66f396be1f46c9505633492 to your computer and use it in GitHub Desktop.
Save okram999/2dc5ea49f66f396be1f46c9505633492 to your computer and use it in GitHub Desktop.
blowing up all the dockers
#!/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