i'm using docker run to test my container locally. I found that it is unable to connect to a certain host in my company's network, failing with "no route to host". It turns out this host has an IP address of 172.18.x.x, which overlaps with Docker's networking.
So, is there a way to change the docker run configuration so that it doesn't claim this particular IP range? I've already tried changing the bip and default-address-pools options in the Docker daemon configuration file, but that didn't solve the problem.