WithProxyConfig sets custom HTTP proxy configuration for builds
(config map[string]string)
| 138 | |
| 139 | // WithProxyConfig sets custom HTTP proxy configuration for builds |
| 140 | func WithProxyConfig(config map[string]string) Option { |
| 141 | return func(s *composeService) error { |
| 142 | s.proxyConfig = config |
| 143 | return nil |
| 144 | } |
| 145 | } |
| 146 | |
| 147 | // WithPrompt configure a UI component for Compose service to interact with user and confirm actions |
| 148 | func WithPrompt(prompt Prompt) Option { |
nothing calls this directly
no outgoing calls
no test coverage detected