| 199 | } |
| 200 | |
| 201 | type composeService struct { |
| 202 | dockerCli command.Cli |
| 203 | // prompt is used to interact with user and confirm actions |
| 204 | prompt Prompt |
| 205 | // eventBus collects tasks execution events |
| 206 | events api.EventProcessor |
| 207 | |
| 208 | // Optional overrides for specific components (for SDK users) |
| 209 | outStream io.Writer |
| 210 | errStream io.Writer |
| 211 | inStream io.Reader |
| 212 | contextInfo api.ContextInfo |
| 213 | proxyConfig map[string]string |
| 214 | |
| 215 | clock clockwork.Clock |
| 216 | maxConcurrency int |
| 217 | dryRun bool |
| 218 | |
| 219 | runtimeAPIVersion runtimeVersionCache |
| 220 | } |
| 221 | |
| 222 | // Close releases any connections/resources held by the underlying clients. |
| 223 | // |
nothing calls this directly
no outgoing calls
no test coverage detected