mirror of https://github.com/docker/docs.git
Update Extensions SDK API ref with `viewContainerTerminal` (#16608)
* Update Extensions SDK API ref with viewContainerTerminal * Add since 0.3.4
This commit is contained in:
parent
850fde24e2
commit
ac8d5c7953
|
@ -100,6 +100,34 @@ A promise that fails if the container doesn't exist.
|
||||||
|
|
||||||
___
|
___
|
||||||
|
|
||||||
|
### viewContainerTerminal
|
||||||
|
|
||||||
|
▸ **viewContainerTerminal**(`id`): `Promise`<`void`\>
|
||||||
|
|
||||||
|
Navigate to the container terminal window in Docker Desktop.
|
||||||
|
|
||||||
|
```typescript
|
||||||
|
await ddClient.desktopUI.navigate.viewContainerTerminal(id)
|
||||||
|
```
|
||||||
|
|
||||||
|
**`Since`**
|
||||||
|
|
||||||
|
0.3.4
|
||||||
|
|
||||||
|
#### 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`<`void`\>
|
||||||
|
|
||||||
|
A promise that fails if the container doesn't exist.
|
||||||
|
|
||||||
|
___
|
||||||
|
|
||||||
### viewContainerStats
|
### viewContainerStats
|
||||||
|
|
||||||
▸ **viewContainerStats**(`id`): `Promise`<`void`\>
|
▸ **viewContainerStats**(`id`): `Promise`<`void`\>
|
||||||
|
|
Loading…
Reference in New Issue