(ctx context.Context, container string)
| 150 | } |
| 151 | |
| 152 | func (d Docker) Start(ctx context.Context, container string) error { |
| 153 | err := d.client.ContainerStart(ctx, container, types.ContainerStartOptions{}) |
| 154 | return err |
| 155 | } |
| 156 | |
| 157 | func (d Docker) Stop(ctx context.Context, container string) error { |
| 158 | timeout := time.Second * 5 |
no outgoing calls
no test coverage detected