-
Notifications
You must be signed in to change notification settings - Fork 13
how to change the default ip range for docker
Tim Purschke edited this page Nov 2, 2022
·
1 revision
in case of a conflict (if you use the 172.16.0.0/16 range internally), you can use the following instructions taken from https://support.hyperglance.com/knowledge/changing-the-default-docker-subnet to change the network.
- create/modify file /etc/docker/daemon.json to contain new ip address:
{
"log-driver": "journald",
"log-opts": {
"tag": "{{.Name}}"
},
"bip": "172.26.0.1/16"
}
- restart docker service:
sudo systemctl restart docker
- restart docker container:
sudo docker restart fworch-api
Feel free to visit the demo site (user=test, password=drive2) or check out our support page.