Skip to content

Instantly share code, notes, and snippets.

@thaibui
Created February 18, 2020 21:03
Show Gist options
  • Save thaibui/38215d9b03e2cb95cfb1701acc4395ff to your computer and use it in GitHub Desktop.
Save thaibui/38215d9b03e2cb95cfb1701acc4395ff to your computer and use it in GitHub Desktop.
Out of disk space in Docker on OSX
If you run out of disk space in your Docker containers on OSX, this is probably the best thing to run:
```
docker rm $(docker ps -q -f 'status=exited')
docker rmi $(docker images -q -f "dangling=true")
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment