(name string, privatePort uint16)
| 226 | } |
| 227 | |
| 228 | func ContainerAddrLocalhost(name string, privatePort uint16) string { |
| 229 | return ContainerAddrWithHost(name, privatePort, "localhost") |
| 230 | } |
| 231 | |
| 232 | func ContainerAddr(name string, privatePort uint16) string { |
| 233 | return ContainerAddrWithHost(name, privatePort, "0.0.0.0") |
no test coverage detected