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
Right now I can't configure IPAM parameters for the network that I create, but I see these parameters in this struct (the Go docker client):
// NetworkCreate is the expected body of the "create network" http request message
type NetworkCreate struct {
// Check for networks with duplicate names.
// Network is primarily keyed based on a random ID and not on the name.
// Network name is strictly a user-friendly alias to the network
// which is uniquely identified using ID.
// And there is no guaranteed way to check for duplicates.
// Option CheckDuplicate is there to provide a best effort checking of any networks
// which has the same name but it is not guaranteed to catch all name collisions.
CheckDuplicate bool
Driver string
Scope string
EnableIPv6 bool
IPAM *network.IPAM
Internal bool
Attachable bool
Ingress bool
ConfigOnly bool
ConfigFrom *network.ConfigReference
Options map[string]string
Labels map[string]string
}
It would be nice if the testcontainers allows configuring this parameter.
The text was updated successfully, but these errors were encountered:
Hey @mdelapenya! Sure, I'm happy to create PR with it 🙂. But for now, I'm pretty busy with my current tasks, so I can't promise any due date or something 😅
Right now I can't configure IPAM parameters for the network that I create, but I see these parameters in this struct (the Go docker client):
It would be nice if the testcontainers allows configuring this parameter.
The text was updated successfully, but these errors were encountered: