pull_image
Pull container images from registries to enable deployment of containerized applications using Podman. This tool retrieves specified images for container management operations.
Instructions
Pull a container image from a registry.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| image | Yes | Image name with optional tag |
Input Schema (JSON Schema)
{
"properties": {
"image": {
"description": "Image name with optional tag",
"title": "Image",
"type": "string"
}
},
"required": [
"image"
],
"type": "object"
}