docker_image_metadata
Retrieve Docker image metadata including popularity metrics, description, and update status from DockerHub to verify image details before deployment.
Instructions
Get detailed metadata for a specific Docker image from DockerHub.
USE THIS WHEN: You need comprehensive information about a Docker image (stats, description, tags).
RETURNS: Image metadata including popularity metrics and description.
Does NOT include full README documentation.
The response includes:
- Image name, namespace, description
- Star count (popularity)
- Pull count (total downloads)
- Last updated timestamp
- Official/community status
Args:
image: Docker image name (e.g., "nginx", "postgres", "username/custom-image")
Returns:
JSON with comprehensive image metadata
Example: docker_image_metadata("nginx") → Returns stars, pulls, description for nginx image
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| image | Yes |