| `options` | `never` | (Optional). A JSON like `{ "all": true, "filters": JSON.stringify({ dangling: ["true"] }), "digests": true }` For more information about the different properties see [the Docker API endpoint documentation](https://docs.docker.com/engine/api/v1.41/#tag/Image). |
#### Returns
`Promise`<`unknown`\>
#### Inherited from
DockerDesktopClientV0.listImages
___
## Navigation Methods
### navigateToContainers
▸ **navigateToContainers**(): `void`
Navigate to the container's window in Docker Desktop.
```typescript
window.ddClient.navigateToContainers();
```
> [!WARNING]
>
> It will be removed in a future version. Use [viewContainers](NavigationIntents.md#viewcontainers) instead.
#### Returns
`void`
#### Inherited from
DockerDesktopClientV0.navigateToContainers
___
### navigateToContainer
▸ **navigateToContainer**(`id`): `Promise`<`any`\>
Navigate to the container window in Docker Desktop.
```typescript
await window.ddClient.navigateToContainer(id);
```
> [!WARNING]
>
> It will be removed in a future version.
#### Parameters
| Name | Type | Description |
| :------ | :------ | :------ |
| `id` | `string` | The full container id, e.g. `46b57e400d801762e9e115734bf902a2450d89669d85881058a46136520aca28`. You can use the `--no-trunc` flag as part of the `docker ps` command to display the full container id. |
#### Returns
`Promise`<`any`\>
A promise that fails if the container doesn't exist.
#### Inherited from
DockerDesktopClientV0.navigateToContainer
___
### navigateToContainerLogs
▸ **navigateToContainerLogs**(`id`): `Promise`<`any`\>
Navigate to the container logs window in Docker Desktop.
```typescript
await window.ddClient.navigateToContainerLogs(id);
```
> [!WARNING]
>
> It will be removed in a future version.
#### Parameters
| Name | Type | Description |
| :------ | :------ | :------ |
| `id` | `string` | The full container id, e.g. `46b57e400d801762e9e115734bf902a2450d89669d85881058a46136520aca28`. You can use the `--no-trunc` flag as part of the `docker ps` command to display the full container id. |
#### Returns
`Promise`<`any`\>
A promise that fails if the container doesn't exist.
#### Inherited from
DockerDesktopClientV0.navigateToContainerLogs
___
### navigateToContainerInspect
▸ **navigateToContainerInspect**(`id`): `Promise`<`any`\>
Navigate to the container inspect window in Docker Desktop.
```typescript
await window.ddClient.navigateToContainerInspect(id);
```
> [!WARNING]
>
> It will be removed in a future version.
#### Parameters
| Name | Type | Description |
| :------ | :------ | :------ |
| `id` | `string` | The full container id, e.g. `46b57e400d801762e9e115734bf902a2450d89669d85881058a46136520aca28`. You can use the `--no-trunc` flag as part of the `docker ps` command to display the full container id. |
#### Returns
`Promise`<`any`\>
A promise that fails if the container doesn't exist.
#### Inherited from
DockerDesktopClientV0.navigateToContainerInspect
___
### navigateToContainerStats
▸ **navigateToContainerStats**(`id`): `Promise`<`any`\>
Navigate to the container stats to see the CPU, memory, disk read/write and network I/O usage.
```typescript
await window.ddClient.navigateToContainerStats(id);
```
> [!WARNING]
>
> It will be removed in a future version.
#### Parameters
| Name | Type | Description |
| :------ | :------ | :------ |
| `id` | `string` | The full container id, e.g. `46b57e400d801762e9e115734bf902a2450d89669d85881058a46136520aca28`. You can use the `--no-trunc` flag as part of the `docker ps` command to display the full container id. |
#### Returns
`Promise`<`any`\>
A promise that fails if the container doesn't exist.
#### Inherited from
DockerDesktopClientV0.navigateToContainerStats
___
### navigateToImages
▸ **navigateToImages**(): `void`
Navigate to the images window in Docker Desktop.
```typescript
await window.ddClient.navigateToImages(id);
```
> [!WARNING]
>
> It will be removed in a future version. Use [viewImages](NavigationIntents.md#viewimages) instead.