Skip to content

Instantly share code, notes, and snippets.

@oliveira-andre
Created September 17, 2021 13:51
Show Gist options
  • Save oliveira-andre/bc96d56dd7974d0630080acc0215cddc to your computer and use it in GitHub Desktop.
Save oliveira-andre/bc96d56dd7974d0630080acc0215cddc to your computer and use it in GitHub Desktop.
This was created when my containers doesn't build because of not enough space left in cache

How to clean docker cache

Removing simple cache to just free some space in device

sudo docker image prune -f && sudo docker container prune -f

Removing all cache

docker builder prune --all

Note: removing all cache some apps should need build slowly first time again

Cleaning volumes

docker system prune -a --volumes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment