diff options
author | Paul Holzinger <pholzing@redhat.com> | 2022-04-06 11:55:40 +0200 |
---|---|---|
committer | Paul Holzinger <pholzing@redhat.com> | 2022-04-11 18:41:19 +0200 |
commit | d8a902a167b91ca4fde4ffeef55e9aa4907ae258 (patch) | |
tree | 0a011a24406b835d3e27dd225956c8c3e18ec93b /cmd | |
parent | 1d01815c107c91f6cfe98446d334c94a97d11080 (diff) | |
download | podman-d8a902a167b91ca4fde4ffeef55e9aa4907ae258.tar.gz podman-d8a902a167b91ca4fde4ffeef55e9aa4907ae258.tar.bz2 podman-d8a902a167b91ca4fde4ffeef55e9aa4907ae258.zip |
API: use no_hosts from containers.conf
The API endpoints should properly honour the `no_hosts=true` setting in
containers.conf.
Fixes #13719
Signed-off-by: Paul Holzinger <pholzing@redhat.com>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/podman/common/create_opts.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/podman/common/create_opts.go b/cmd/podman/common/create_opts.go index ad6b3870a..39146f918 100644 --- a/cmd/podman/common/create_opts.go +++ b/cmd/podman/common/create_opts.go @@ -181,6 +181,7 @@ func ContainerCreateToContainerCLIOpts(cc handlers.CreateContainerConfig, rtc *c Network: nsmode, PublishPorts: specPorts, NetworkOptions: netOpts, + NoHosts: rtc.Containers.NoHosts, } // network names |