Pauses all processes within this container. Raises: :py:class:`docker.errors.APIError` If the server returns an error.
(self)
| 322 | return self.client.api.logs(self.id, **kwargs) |
| 323 | |
| 324 | def pause(self): |
| 325 | """ |
| 326 | Pauses all processes within this container. |
| 327 | |
| 328 | Raises: |
| 329 | :py:class:`docker.errors.APIError` |
| 330 | If the server returns an error. |
| 331 | """ |
| 332 | return self.client.api.pause(self.id) |
| 333 | |
| 334 | def put_archive(self, path, data): |
| 335 | """ |
no outgoing calls