An update to the guide here another option to get information on used Docker space is to run;
docker system df this will give you information on 'Reclaimable' space
docker system prune -a as per the guide this will remove unused images, stopped containers and clean up your Docker install, another option is to run;
docker image prune -a this will remove all unused images, and any images with stopped containers
docker container prune -a this will remove all stopped containers.