Skip to content

Instantly share code, notes, and snippets.

@woss
Created June 15, 2015 11:35
Show Gist options
  • Save woss/7e7811d44e5dcf5a42cf to your computer and use it in GitHub Desktop.
Save woss/7e7811d44e5dcf5a42cf to your computer and use it in GitHub Desktop.
#!/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