Skip to content

Instantly share code, notes, and snippets.

@drb
Last active January 26, 2017 21:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save drb/973903cbd9d04b17570de1bdec8595a6 to your computer and use it in GitHub Desktop.
Save drb/973903cbd9d04b17570de1bdec8595a6 to your computer and use it in GitHub Desktop.
Docker cheatsheet
#!/bin/bash
# deletes all containers
docker rm $(docker ps -a -q)
# deletes all images
docker rmi $(docker images -q)
# rebuild everything and restart any changed containers
docker-compose up -d --build
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment