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. NetworkingConfig

interface NetworkingConfig {
    EndpointsConfig?: {
        [key: string]: EndpointSettings;
    };
}

Properties

Properties

EndpointsConfig?: {
    [key: string]: EndpointSettings;
}

A mapping of network name to endpoint configuration for that network.