Skip to content

Instantly share code, notes, and snippets.

@sabbour
Last active August 22, 2023 20:07
Clean up docker images and volumes to fix the "No space left on device" error.
#!/usr/bin/env bash
docker rm $(docker ps -qf 'status=exited')
docker rmi $(docker images -qf 'dangling=true')
docker volume rm $(docker volume ls -qf 'dangling=true')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment