r"""Reset the DockerRuntime instance. Returns: DockerRuntime: The DockerRuntime instance.
(self)
| 317 | return self |
| 318 | |
| 319 | def reset(self) -> "DockerRuntime": |
| 320 | r"""Reset the DockerRuntime instance. |
| 321 | |
| 322 | Returns: |
| 323 | DockerRuntime: The DockerRuntime instance. |
| 324 | """ |
| 325 | |
| 326 | return self.stop().build() |
| 327 | |
| 328 | def stop(self, remove: Optional[bool] = None) -> "DockerRuntime": |
| 329 | r"""stop the Docker container. |