I\'ve just noticed that I ran out of disk space on my laptop. Quite a lot is used by Docker as found by mate-disk-usage-analyzer:
mate-disk-usage-analyzer
The docker/
docker/
I had same issue. In my case solution was:
view all images: docker images
remove old unused images: docker rmi IMAGE_ID
possibly you will need to prune stopped containers: docker container prune
p.s. docker --help is good solution :)