diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-05-06 09:16:04 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-06 09:16:04 -0400 |
commit | d6000a0b86fc835bca5cd28722ad75228a809629 (patch) | |
tree | f8e9d72f59df2de34ffe7d6a4d84002ce33b1d55 /cmd | |
parent | b6405c1ae6fb1ac6b08493fa8e2f77a0fe9ff39e (diff) | |
parent | c0de4a4d70a68e5afeb70a5f6c5c5fbd2ca0bcc2 (diff) | |
download | podman-d6000a0b86fc835bca5cd28722ad75228a809629.tar.gz podman-d6000a0b86fc835bca5cd28722ad75228a809629.tar.bz2 podman-d6000a0b86fc835bca5cd28722ad75228a809629.zip |
Merge pull request #10246 from zhangguanzhang/compose-static-ip
Fixes docker-compose cannot set static ip when use ipam
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/podman/common/create_opts.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cmd/podman/common/create_opts.go b/cmd/podman/common/create_opts.go index ca36d751e..77ac781a5 100644 --- a/cmd/podman/common/create_opts.go +++ b/cmd/podman/common/create_opts.go @@ -302,6 +302,11 @@ func ContainerCreateToContainerCLIOpts(cc handlers.CreateContainerConfig, cgroup staticIP := net.ParseIP(ep.IPAddress) netInfo.StaticIP = &staticIP } + // if IPAMConfig.IPv4Address is provided + if ep.IPAMConfig != nil && ep.IPAMConfig.IPv4Address != "" { + staticIP := net.ParseIP(ep.IPAMConfig.IPv4Address) + netInfo.StaticIP = &staticIP + } // If MAC address is provided if len(ep.MacAddress) > 0 { staticMac, err := net.ParseMAC(ep.MacAddress) |