2019-01-16 09:36:09 +01:00
# context inspect
2023-01-06 19:04:05 +01:00
<!-- - MARKER_GEN_START -->
2019-01-16 09:36:09 +01:00
Display detailed information on one or more contexts
2023-01-06 19:04:05 +01:00
### Options
| Name | Type | Default | Description |
|:-----------------|:---------|:--------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| `-f` , `--format` | `string` | | Format output using a custom template:< br > 'json': Print in JSON format< br > 'TEMPLATE': Print output using the given Go template.< br > Refer to https://docs.docker.com/go/formatting/ for more information about formatting output with templates |
<!-- - MARKER_GEN_END -->
2019-01-16 09:36:09 +01:00
## Description
Inspects one or more contexts.
## Examples
### Inspect a context by name
2021-08-21 14:54:14 +02:00
```console
2019-01-16 09:36:09 +01:00
$ docker context inspect "local+aks"
[
2020-05-07 13:53:25 +02:00
{
"Name": "local+aks",
"Metadata": {
2022-02-23 18:05:12 +01:00
"Description": "Local Docker Engine",
"StackOrchestrator": "swarm"
2020-05-07 13:53:25 +02:00
},
"Endpoints": {
"docker": {
"Host": "npipe:////./pipe/docker_engine",
"SkipTLSVerify": false
}
},
2022-02-23 18:05:12 +01:00
"TLSMaterial": {},
2020-05-07 13:53:25 +02:00
"Storage": {
"MetadataPath": "C:\\Users\\simon\\.docker\\contexts\\meta\\cb6d08c0a1bfa5fe6f012e61a442788c00bed93f509141daff05f620fc54ddee",
"TLSPath": "C:\\Users\\simon\\.docker\\contexts\\tls\\cb6d08c0a1bfa5fe6f012e61a442788c00bed93f509141daff05f620fc54ddee"
2019-01-16 09:36:09 +01:00
}
2020-05-07 13:53:25 +02:00
}
2019-01-16 09:36:09 +01:00
]
2020-05-07 13:53:25 +02:00
```