getProxyConfig returns the proxy config - either custom override or environment-based
()
| 249 | |
| 250 | // getProxyConfig returns the proxy config - either custom override or environment-based |
| 251 | func (s *composeService) getProxyConfig() map[string]string { |
| 252 | if s.proxyConfig != nil { |
| 253 | return s.proxyConfig |
| 254 | } |
| 255 | return storeutil.GetProxyConfig(s.dockerCli) |
| 256 | } |
| 257 | |
| 258 | func (s *composeService) stdout() *streams.Out { |
| 259 | return s.dockerCli.Out() |
no outgoing calls
no test coverage detected