Inspect changes on a container's filesystem. Returns: (list) A list of dictionaries containing the attributes `Path` and `Kind`. Raises: :py:class:`docker.errors.APIError` If the server returns an error.
(self)
| 151 | return self.client.images.get(resp['Id']) |
| 152 | |
| 153 | def diff(self): |
| 154 | """ |
| 155 | Inspect changes on a container's filesystem. |
| 156 | |
| 157 | Returns: |
| 158 | (list) A list of dictionaries containing the attributes `Path` |
| 159 | and `Kind`. |
| 160 | |
| 161 | Raises: |
| 162 | :py:class:`docker.errors.APIError` |
| 163 | If the server returns an error. |
| 164 | """ |
| 165 | return self.client.api.diff(self.id) |
| 166 | |
| 167 | def exec_run(self, cmd, stdout=True, stderr=True, stdin=False, tty=False, |
| 168 | privileged=False, user='', detach=False, stream=False, |
no outgoing calls