You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In some place, the host main network is on subnet 172.16.0.0 which is the one used by docker.
If the docker network is not updated it can cause some trouble when you try to access servers outside of the host and on the subnet 172.16.0.0.
The solution is to create/update /etc/docker/daemon.json and define as follow :
{
"bip": "{anotherSubnett}/16"
}
Then you need to restart docker and then the subnet is updated.
Therefore, it is recommended to do it before launching any container (with or without docker-compose) otherwise, you will need to manually recreate every network (by adding --recreate to docker-compose up for example)
The text was updated successfully, but these errors were encountered:
In some place, the host main network is on subnet 172.16.0.0 which is the one used by docker.
If the docker network is not updated it can cause some trouble when you try to access servers outside of the host and on the subnet 172.16.0.0.
The solution is to create/update /etc/docker/daemon.json and define as follow :
Then you need to restart docker and then the subnet is updated.
Therefore, it is recommended to do it before launching any container (with or without docker-compose) otherwise, you will need to manually recreate every network (by adding --recreate to docker-compose up for example)
The text was updated successfully, but these errors were encountered: