Error: Pool overlaps with other networkError: Pool overlaps with other network
The IP address range for a new Docker network conflicts with an existing network.
Warning: Found orphan containersDocker Compose found containers from a previous configuration that are no longer defined.
Services were removed from the compose file but their containers still exist. This happens when you rename or remove services without running docker compose down first.
Remove orphan containers: docker compose up --remove-orphans. Or manually: docker compose down before modifying the compose file. The warning is harmless but the orphan containers consume resources.
docker compose up --remove-orphansError: Pool overlaps with other networkThe IP address range for a new Docker network conflicts with an existing network.
Error: dial tcp: lookup registry-1.docker.io: no such hostDocker cannot reach the container registry to pull or push images.
Exit Code 137The container was killed with SIGKILL (signal 9), commonly due to out-of-memory (OOM) conditions.
Error: manifest not foundThe image manifest could not be found in the registry.
Error: target stage not found in DockerfileThe specified build target does not match any stage name in the Dockerfile.
Error: network not foundThe specified Docker network does not exist.