Skip to content

Troubleshooting

Common Docker Issues & Solutions

Cache Key Checksum Error

Error Message:

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

Solution:

Clear the Docker build cache:

Terminal window
docker builder prune -a --force

Network Address Space Overlap

Error Message:

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

Solution:

Remove all Docker networks:

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