Skip to content

Instantly share code, notes, and snippets.

@raphaelfruneaux
Created July 17, 2018 20:15
Show Gist options
  • Save raphaelfruneaux/9dc997b4d6009c84cd7a465e2100d707 to your computer and use it in GitHub Desktop.
Save raphaelfruneaux/9dc997b4d6009c84cd7a465e2100d707 to your computer and use it in GitHub Desktop.
Docker Snippets
#!/bin/bash
# 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