Skip to content

Instantly share code, notes, and snippets.

View razumzhir0's full-sized avatar

Raz Zach Stoddard razumzhir0

View GitHub Profile
### Keybase proof
I hereby claim:
* I am razumzhiro on github.
* I am razumzhiro (https://keybase.io/razumzhiro) on keybase.
* I have a public key ASD7JQWVP8qccSJdQFWMPb4rCvVQLGiTJ951cN34dxSfgAo
To claim this, I am signing this object:
@razumzhir0
razumzhir0 / docker-burn
Last active May 9, 2017 22:04
Docker Burn Script - Taken/modified from StackExchange, unsure of the post.
# echo 'stopping all containers...\n '
docker kill $(docker ps -q)
# echo 'removing all containers...\n '
docker rm $(docker ps -a -q)
# echo 'removing all docker images...\n '
docker rmi $(docker images -a -q)
# echo 'removing all docker volumes...\n '