Skip to content

Instantly share code, notes, and snippets.

@vladimirlukyanov
Created January 31, 2015 21:09
Show Gist options
  • Save vladimirlukyanov/8f3ea99951410abf42d5 to your computer and use it in GitHub Desktop.
Save vladimirlukyanov/8f3ea99951410abf42d5 to your computer and use it in GitHub Desktop.
docker remove all
#!/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