getContextInfo returns the context info - either custom override or dockerCli adapter
()
| 241 | |
| 242 | // getContextInfo returns the context info - either custom override or dockerCli adapter |
| 243 | func (s *composeService) getContextInfo() api.ContextInfo { |
| 244 | if s.contextInfo != nil { |
| 245 | return s.contextInfo |
| 246 | } |
| 247 | return &dockerCliContextInfo{cli: s.dockerCli} |
| 248 | } |
| 249 | |
| 250 | // getProxyConfig returns the proxy config - either custom override or environment-based |
| 251 | func (s *composeService) getProxyConfig() map[string]string { |