Skip to content

Instantly share code, notes, and snippets.

View AxmetES's full-sized avatar
🏠
Working from home

Yerkin Akhmetzhanov AxmetES

🏠
Working from home
View GitHub Profile
@AxmetES
AxmetES / cleanup-docker.sh
Created May 29, 2021 18:54 — forked from sabbour/cleanup-docker.sh
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')