This will clean the mess up.
[raw] sudo docker system prune -af[/raw]
But sometimes that’s not enough. The following will nuke all your images and reclaim your space.
[raw]sudo service docker stop
sudo rm -rf /var/lib/docker
sudo service docker start