WithContextInfo sets custom Docker context information
(info api.ContextInfo)
| 130 | |
| 131 | // WithContextInfo sets custom Docker context information |
| 132 | func WithContextInfo(info api.ContextInfo) Option { |
| 133 | return func(s *composeService) error { |
| 134 | s.contextInfo = info |
| 135 | return nil |
| 136 | } |
| 137 | } |
| 138 | |
| 139 | // WithProxyConfig sets custom HTTP proxy configuration for builds |
| 140 | func WithProxyConfig(config map[string]string) Option { |
nothing calls this directly
no outgoing calls
no test coverage detected