
Docker Pull
CertifiedPull a Docker image from a registry
Docker Pull
Pull a Docker image from a registry
Pulls an image/tag using the configured Docker daemon. If registry credentials specify a registry host, it is prepended to the image name.
type: io.kestra.plugin.docker.cli.PullExamples
Pull a Docker image
id: docker_pull
namespace: company.team
tasks:
- id: pull_alpine
type: io.kestra.plugin.docker.cli.Pull
image: alpine:latest
Properties
image *Requiredstring
Image to pull
Image reference with optional tag; registry is prepended when provided via credentials.
config stringobject
Docker configuration file
Docker configuration file that can set access credentials to private container registries. Usually located in ~/.docker/config.json.
credentials
Credentials for a private container registry
Credentials for a private container registry.
The registry authentication.
The auth field is a base64-encoded authentication string of username: password or a token.
The identity token.
The registry password.
The registry URL.
If not defined, the registry will be extracted from the image name.
The registry token.
The registry username.
host string
The URI of your Docker host e.g. localhost
pluginDefaultsRef Non-dynamicstring
Reference (ref) of the pluginDefaults to apply to this task.