Change Docker default bridge IP address
This article explains how to change the default bridge IP address
- Add –bip “YOUR_IP_ADDRESS” parameter at the end of line ExecStart= @/lib/systemd/system/docker.service
- sudo
systemctl daemon-reload
/etc/docker/daemon.json - sudo
systemctl start docker
Alternative solution
- Add or Edit /etc/docker/daemon.json
{
“default-address-pools”:
[
{“base”:”10.1.0.0/16″,”size”:24}
]
}
by EmOne
You must be logged in to post a comment.