If you are building docker images in your machine. I sure that your hard disk is growing up day by day. To stop it, you have to remove unnecessary images to release for your hard disk by command below:
1 |
sudo docker images | grep "^<none>" | awk '{print $3}' |
Or:
1 |
sudo docker rmi $(sudo docker images --filter "dangling=true" -q --no-trunc) |