Last active
February 4, 2016 11:40
-
-
Save dehora/947596df1646de109418 to your computer and use it in GitHub Desktop.
Docker life support
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# find docker | |
eval "$(docker-machine env default)" | |
# bounce docker | |
docker-machine restart default | |
# blitz containers | |
docker rm $(docker ps -a -q) | |
# blitz images | |
docker rmi $(docker images -q) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment