docker_images
List Docker images with filtering options to manage container environments and identify available images for development workflows.
Instructions
List Docker images
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filter | No | Filter images (e.g., "reference=node:*") | |
| all | No | Show all images (default hides intermediate) | |
| format | No | Output format | table |
| cwd | No | Working directory |
Input Schema (JSON Schema)
{
"properties": {
"all": {
"default": false,
"description": "Show all images (default hides intermediate)",
"type": "boolean"
},
"cwd": {
"description": "Working directory",
"type": "string"
},
"filter": {
"description": "Filter images (e.g., \"reference=node:*\")",
"type": "string"
},
"format": {
"default": "table",
"description": "Output format",
"enum": [
"table",
"json"
],
"type": "string"
}
},
"type": "object"
}