(ctx context.Context, projectName string, options api.StartOptions)
| 29 | ) |
| 30 | |
| 31 | func (s *composeService) Start(ctx context.Context, projectName string, options api.StartOptions) error { |
| 32 | return Run(ctx, func(ctx context.Context) error { |
| 33 | return s.start(ctx, strings.ToLower(projectName), options, nil) |
| 34 | }, "start", s.events) |
| 35 | } |
| 36 | |
| 37 | func (s *composeService) start(ctx context.Context, projectName string, options api.StartOptions, listener api.ContainerEventListener) error { |
| 38 | project := options.Project |
no test coverage detected