I've been able to start my Docker application without a problem but suddenly I get this error:
failed to parse pool request for address space "LocalDefault" pool "" subpool "": could not find an available, non-overlapping IPv4 address pool among the defaults to assign to the network
I'm running Docker 1.12.6.
How do I fix this?
Use the docker network create command to create a user-defined bridge network. You can specify the subnet, the IP address range, the gateway, and other options. See the docker network create reference or the output of docker network create --help for details.
Hi, You can find the container & network details by docker inspect container_name To get the container_name, hit this command docker ps I hope this would be useful.
I experienced this issue while running an OpenVPN client which was also my default route. Stopping the OpenVPN client worked around the issue.
Turns out there's a limit to the number of simultaneously active Docker networks and I hit that limit.
I got around the issue by removing all my networks:
docker network ls -q | xargs docker network rm
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With