mysterious-controller-97665
06/02/2022, 6:24 PM{
"default-address-pools": [
{
"base": "172.27.0.0/12",
"size": 20
},
{
"base": "192.168.0.0/16",
"size": 24
}
]
}
that didn't work eitherjolly-forest-99711
06/03/2022, 4:46 PMmysterious-controller-97665
06/06/2022, 1:30 PMcalm-sugar-3169
06/07/2022, 10:55 PM--bip 192.168.0.0/16
argument directly to dockerd in the docker startup service to see if that makes any difference?mysterious-controller-97665
06/08/2022, 12:53 PMrapid-helmet-86074
06/08/2022, 2:52 PM/etc/docker/daemon.json
like:
{
"live-restore": false,
"bip": "192.168.1.1/24",
"default-address-pools": [
{
"base": "192.168.2.0",
"size": 24
},
{
"base": "192.168.3.0",
"size": 24
}
]
}
That worked well enough for me. The docker0: interface in this example would get 192.168.1.0/24 net, and the first two docker network create
commands would get the other two networks (if something did a third one it'd go back to 172.17.0.1, though so periodically we did end up with odd issues from that).