Skip to content

Instantly share code, notes, and snippets.

@IvanTorresEdge
Last active November 29, 2016 04:18
Show Gist options
  • Save IvanTorresEdge/e17f52d4eaa605c051b6695d2edb9588 to your computer and use it in GitHub Desktop.
Save IvanTorresEdge/e17f52d4eaa605c051b6695d2edb9588 to your computer and use it in GitHub Desktop.
Docker: Delete all containers && images
# Delete all containers
docker rm $(docker ps -a -q)
# Delete all images
docker rmi $(docker images -q)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment