(ctx context.Context, projectName string, serviceName string)
| 450 | } |
| 451 | |
| 452 | func (t tarDockerClient) ContainersForService(ctx context.Context, projectName string, serviceName string) ([]container.Summary, error) { |
| 453 | containers, err := t.s.getContainers(ctx, projectName, oneOffExclude, true, serviceName) |
| 454 | if err != nil { |
| 455 | return nil, err |
| 456 | } |
| 457 | return containers, nil |
| 458 | } |
| 459 | |
| 460 | func (t tarDockerClient) Exec(ctx context.Context, containerID string, cmd []string, in io.Reader) error { |
| 461 | execCreateResp, err := t.s.apiClient().ExecCreate(ctx, containerID, client.ExecCreateOptions{ |
nothing calls this directly
no test coverage detected