Change default docker0 bridge IP address

I found the following post which solved the issue:

So in my case, the following modified the address permanently. Best of Luck.

  • Hank

sudo systemctl stop docker
touch daemon.json
echo ‘{’ > daemon.json
echo ’ “bip”: “192.168.1.5/24”,’ >> daemon.json
echo ’ “fixed-cidr”: “192.168.1.5/25”’ >> daemon.json
echo ‘}’ >> daemon.json
sudo cp daemon.json /etc/docker
sudo systemctl start docker
rm daemon.json
ip addr