Last Updated: October 11, 2018
·
162
· da-edra

Using jet steps to test your CI pipelines before uploading them to CodeShip? Don't forget to clean your unused Docker images every once in a while!

My SDD storage was allmost full which was really weird since I only use this laptop to work.

I was wondering what could be cause for this problem, it turns out I had plenty of unused Docker images taking up space!

After cleaning my Docker images with:

docker images -q | xargs docker rmi -f

I got ~50 Gb of storage back!