Skip to content

Instantly share code, notes, and snippets.

@dhoeric
Last active April 20, 2018 06:25
Show Gist options
  • Save dhoeric/786254097ee16119a8e2 to your computer and use it in GitHub Desktop.
Save dhoeric/786254097ee16119a8e2 to your computer and use it in GitHub Desktop.
[Docker Cheat Sheet] #docker

Export vm-based variable to environment

eval `docker-machine env your-vm`

Remove non-tagged docker image

docker rmi $(docker images | grep "^<none>" | awk '{print $3}' | tr '\n' ' ')

Remove exited docker container

docker rm -f  $(docker ps -a | grep "Exited" | awk '{print $1}')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment