Hi all,
I deployed a docker composed based solution on a customer’s premises.
The customer is a campus with a big network.
They got back to me asking why a part of their internal network was not able to access
the docker powered service. Turns out a subnet in the campus has the same address as a docker
network: 172.19.0.0/16
.
My idea to solve this was to ask which network they plan to never assign to any machine in the campus and go with it.
But I was told they are keeping all addresses reserved for future allocation.
The only way for me to use any private address at all is to ask them to reserve it for me.
But they require me to ask as few addresses as possible for allocation.
Given all this I’m wondering if I can have docker use IPv6 for its networks.
That would solve my problems.
Otherwise my fear is that I’ll ask them to allocate just enough addresses for today, but in the future
this might byte me when I deploy new versions of our software, which might have an additional service requiring an additional address.
So the question is: is it possible to have docker only use IPv6 for its networks? If it is, can someone provide some pointers?
Thanks!