Docker - Cannot create temporary directory
Long story short, this means that your root filesystem is totally full.
- Clear up some space;
- Change your partition sizes;
- Try moving to another drive
It means that your root storage is full, check by df -h
.
This method might help you up with removing stale docker images by command below:
docker rmi $(docker images --filter "dangling=true" -q --no-trunc)
Or using:
docker image prune