Skip to content

Instantly share code, notes, and snippets.

@edonosotti
Created November 13, 2018 17:15
Show Gist options
  • Save edonosotti/e8eb525212e7176be9410ad32236e4b7 to your computer and use it in GitHub Desktop.
Save edonosotti/e8eb525212e7176be9410ad32236e4b7 to your computer and use it in GitHub Desktop.
Cleanup Docker cache on MacOSX
#!/bin/bash
docker rm $(docker ps -a -q) && \
docker rmi $(docker images -q) && \
docker volume rm $(docker volume ls |awk '{print $2}') && \
rm -rf ~/Library/Containers/com.docker.docker/Data/*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment