docker_image_info
Retrieve detailed metadata about a Docker image, including version, repository, and tag, to manage and analyze containerized applications effectively.
Instructions
Get detailed information about a specific Docker image
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Image name (e.g., user/repo or library/repo) | |
tag | No | Specific image tag (default: latest) |
Input Schema (JSON Schema)
{
"description": "Parameters for getting Docker image information.",
"properties": {
"name": {
"description": "Image name (e.g., user/repo or library/repo)",
"title": "Name",
"type": "string"
},
"tag": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Specific image tag (default: latest)",
"title": "Tag"
}
},
"required": [
"name"
],
"title": "DockerImageInfo",
"type": "object"
}