Merge pull request #47490 from akerouanton/25.0-47370_windows_nat_network_dns

[25.0 backport] Set up DNS names for Windows default network
This commit is contained in:
Albin Kerouanton 2024-03-01 13:13:02 +01:00 committed by GitHub
commit 41fde13f64
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -649,7 +649,10 @@ func cleanOperationalData(es *network.EndpointSettings) {
}
func (daemon *Daemon) updateNetworkConfig(container *container.Container, n *libnetwork.Network, endpointConfig *networktypes.EndpointSettings, updateSettings bool) error {
if containertypes.NetworkMode(n.Name()).IsUserDefined() {
// Set up DNS names for a user defined network, and for the default 'nat'
// network on Windows (IsBridge() returns true for nat).
if containertypes.NetworkMode(n.Name()).IsUserDefined() ||
(serviceDiscoveryOnDefaultNetwork() && containertypes.NetworkMode(n.Name()).IsBridge()) {
endpointConfig.DNSNames = buildEndpointDNSNames(container, endpointConfig.Aliases)
}