(ctx context.Context, projectName string, service *types.ServiceConfig)
| 269 | } |
| 270 | |
| 271 | func (s *composeService) resolveRunServiceReferences(ctx context.Context, projectName string, service *types.ServiceConfig) error { |
| 272 | containersByService, err := s.getContainersByService(ctx, projectName) |
| 273 | if err != nil { |
| 274 | return err |
| 275 | } |
| 276 | return resolveServiceReferences(service, containersByService) |
| 277 | } |
| 278 | |
| 279 | func (s *composeService) startDependencies(ctx context.Context, project *types.Project, options api.RunOptions) error { |
| 280 | project = project.WithServicesDisabled(options.Service) |
no test coverage detected