-
Notifications
You must be signed in to change notification settings - Fork 611
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: adds IP address configuration for default bridge network #3640
Conversation
308523a
to
f1f9766
Compare
419b4ac
to
2acb491
Compare
19a66ee
to
6fc247a
Compare
Docker CI failure (unrelated): #3652 |
Just for note, I'm not sure if |
Can you please elaborate? I don't think network create has a |
For me, when I want to change the default bridge IP, I will use the This option in docker will have an implicit behavior, it will change the network start range. For example, for the the same command For the nerdctl, we have the default So IMHO, if we can update the default CIDR for bridge, we need to change network StartingCIDR at the same time cc @AkihiroSuda WDYT |
I tried to reproduce this behavior in my local testing but could not (let me know if I am doing something wrong here):
For new bridge network (without a subnet range specified), docker still picks the Docker actually provides a daemon level option |
You are right. I mix bip and |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM on CI green.
Maybe you just need update the code in main branch and rerun the CI
Signed-off-by: Swagat Bora <swagatbora90@gmail.com>
6fc247a
to
7d116bf
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, All CI green
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks
Adds an option in nerdctl.toml to configure the the default bridge network IP
Fixes: #3625