NetworkingConfig

@Serializable
data class NetworkingConfig(val endpointsConfig: Map<String, EndpointSettings>? = null)

NetworkingConfig represents the container's networking configuration for each of its interfaces. It is used for the networking configs specified in the docker create and docker network connect commands.

Parameters

endpointsConfig

A mapping of network name to endpoint configuration for that network. The endpoint configuration can be left empty to connect to that network with no particular endpoint configuration.

Constructors

Link copied to clipboard
constructor(endpointsConfig: Map<String, EndpointSettings>? = null)

Properties

Link copied to clipboard
@SerialName(value = "EndpointsConfig")
val endpointsConfig: Map<String, EndpointSettings>?