Skip to content

Troubleshooting

failed to solve: failed to compute cache key: failed to calculate checksum of ref moby…

- Clear the Docker build cache:

Terminal window
docker builder prune -a --force

ERROR: Pool overlaps with other one on this address space when starting…

- Remove all Docker unused networks:

Terminal window
docker network rm $(docker network ls -q)

or

Terminal window
docker network prune

Error response from daemon: client version 1.42 is too old. Minimum supported API version is 1.44, please upgrade your client to a newer version

  • Update daemon.json:
Terminal window
sudo vim /etc/docker/daemon.json
{
...
"min-api-version": "1.32"
}
Terminal window
sudo systemctl restart docker