(ctx context.Context, op Operation)
| 49 | } |
| 50 | |
| 51 | func (exec *planExecutor) execConnectNetwork(ctx context.Context, op Operation) error { |
| 52 | _, err := exec.compose.apiClient().NetworkConnect(ctx, op.Name, client.NetworkConnectOptions{ |
| 53 | Container: op.Container.ID, |
| 54 | }) |
| 55 | return err |
| 56 | } |
| 57 | |
| 58 | // --- Volume operations --- |
| 59 |
no test coverage detected