Skip to content

Instantly share code, notes, and snippets.

@itoonx
Last active September 24, 2017 10:24
Show Gist options
  • Save itoonx/ca56d9f9c762b3c366b73b67fb861ef0 to your computer and use it in GitHub Desktop.
Save itoonx/ca56d9f9c762b3c366b73b67fb861ef0 to your computer and use it in GitHub Desktop.
#!/bin/bash
# Stop all containers
docker stop $(docker ps -a -q)
# 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