Skip to content

Instantly share code, notes, and snippets.

@parrotmac
Created March 16, 2017 01:35
Show Gist options
  • Save parrotmac/50cd6cff6554ba7ffd9296d6f866c64d to your computer and use it in GitHub Desktop.
Save parrotmac/50cd6cff6554ba7ffd9296d6f866c64d to your computer and use it in GitHub Desktop.
# Not my original work -- all thanks to the Stackoverflow Gods
#!/bin/bash
# remove stopped containers
docker rm $(docker ps -a -q)
# remove dangling images
docker rmi $(docker images -q --filter "dangling=true")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment