docker_pull
Pull Docker images from registries to your development environment. Download specific images or all tagged versions for container deployment.
Instructions
Pull an image or repository from a registry
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| image | Yes | Image name and tag (e.g., "nginx:latest") | |
| allTags | No | Download all tagged images | |
| cwd | No | Working directory |
Input Schema (JSON Schema)
{
"properties": {
"allTags": {
"default": false,
"description": "Download all tagged images",
"type": "boolean"
},
"cwd": {
"description": "Working directory",
"type": "string"
},
"image": {
"description": "Image name and tag (e.g., \"nginx:latest\")",
"type": "string"
}
},
"required": [
"image"
],
"type": "object"
}