# Functions

New creates a new network with a random UUID name, calling the already existing GenericNetwork APIs.
WithAttachable allows to set the network as attachable.
WithCheckDuplicate allows to check if a network with the same name already exists.
WithDriver allows to override the default network driver, which is "bridge".
WithEnableIPv6 allows to set the network as IPv6 enabled.
WithInternal allows to set the network as internal.
WithIPAM allows to change the default IPAM configuration.
WithLabels allows to set the network labels, adding the new ones to the default Testcontainers for Go labels.
WithNetwork reuses an already existing network, attaching the container to it.
WithNewNetwork creates a new network with random name and customizers, and attaches the container to it.

# Interfaces

NetworkCustomizer is an interface that can be used to configure the network create request.

# Type aliases

CustomizeNetworkOption is a type that can be used to configure the network create request.