Skip to content

Instantly share code, notes, and snippets.

@felixd
Created December 8, 2018 22:41
Show Gist options
  • Save felixd/310789eb0470bc721400fb820f5e2094 to your computer and use it in GitHub Desktop.
Save felixd/310789eb0470bc721400fb820f5e2094 to your computer and use it in GitHub Desktop.
Docker - Images and Containers cleaning
#!/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