For some reason my VPN (NordVPN) is interfering with Docker:
make start
docker-compose -f docker-compose/docker-compose.base.yml -f docker-compose/docker-compose.dev.yml up -d
doCreating network "docker-compose_default" with the default driver
ERROR: could not find an available, non-overlapping IPv4 address pool among the defaults to assign to the network
cmake: *** [Makefile:59: up_dev] Error 1
The issue seems to be to do with networking. I'm not sure how to troubleshoot it or fix it, though. After disabling my VPN and running sudo systemctl restart docker
, Docker works fine.
Environment
- Ubuntu 20.04 LTS
- Docker version 19.03.8, build afacb8b7f0
- NordVPN Version 3.7.4
docker network prune
and try again. And if it really is an issue with the VPN, try this. – Bentzdocker network prune
solved the network issue for macOS 10.15.2 and ProtonVPN 1.9.0. Docker would break on build withERROR [internal] load metadata
more precisely itfailed to solve with frontend dockerfile.v0
as the request failed due toService Unavailable
– Ferren