docker_inspect
Retrieve detailed configuration and state information for Docker containers, images, networks, and volumes to debug and analyze containerized applications.
Instructions
Return low-level information on Docker objects (containers, images, networks, volumes)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| target | Yes | Container, image, network, or volume name/ID | |
| type | No | Type of object to inspect | |
| cwd | No | Working directory |
Input Schema (JSON Schema)
{
"properties": {
"cwd": {
"description": "Working directory",
"type": "string"
},
"target": {
"description": "Container, image, network, or volume name/ID",
"type": "string"
},
"type": {
"description": "Type of object to inspect",
"enum": [
"container",
"image",
"network",
"volume"
],
"type": "string"
}
},
"required": [
"target"
],
"type": "object"
}