mirror of
https://github.com/containers/podman.git
synced 2025-08-06 03:19:52 +08:00
Resolve review comments
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
This commit is contained in:
@ -293,10 +293,10 @@ type ContainerConfig struct {
|
||||
// namespace
|
||||
// These are not used unless CreateNetNS is true
|
||||
PortMappings []ocicni.PortMapping `json:"portMappings,omitempty"`
|
||||
// NoCreateResolvConf indicates that resolv.conf should not be
|
||||
// UseImageResolvConf indicates that resolv.conf should not be
|
||||
// bind-mounted inside the container.
|
||||
// Conflicts with DNSServer, DNSSearch, DNSOption.
|
||||
NoCreateResolvConf bool
|
||||
UseImageResolvConf bool
|
||||
// DNS servers to use in container resolv.conf
|
||||
// Will override servers in host resolv if set
|
||||
DNSServer []net.IP `json:"dnsServer,omitempty"`
|
||||
@ -306,10 +306,10 @@ type ContainerConfig struct {
|
||||
// DNS options to be set in container resolv.conf
|
||||
// With override options in host resolv if set
|
||||
DNSOption []string `json:"dnsOption,omitempty"`
|
||||
// NoCreateHosts indicates that /etc/hosts should not be
|
||||
// UseImageHosts indicates that /etc/hosts should not be
|
||||
// bind-mounted inside the container.
|
||||
// Conflicts with HostAdd.
|
||||
NoCreateHosts bool
|
||||
UseImageHosts bool
|
||||
// Hosts to add in container
|
||||
// Will be appended to host's host file
|
||||
HostAdd []string `json:"hostsAdd,omitempty"`
|
||||
|
Reference in New Issue
Block a user