Skip to content

Instantly share code, notes, and snippets.

@dehora
Last active February 4, 2016 11:40
Show Gist options
  • Save dehora/947596df1646de109418 to your computer and use it in GitHub Desktop.
Save dehora/947596df1646de109418 to your computer and use it in GitHub Desktop.
Docker life support
# 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