Pull
Pull a Docker image.
yaml
type: "io.kestra.plugin.docker.Pull"
Examples
Pull a docker image
yaml
id: docker_pull
namespace: company.team
tasks:
- id: pull_alpine
type: io.kestra.plugin.docker.Pull
image: alpine:latest
Properties
image *Requiredstring
Docker image to use.
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
host string
The URI of your Docker host e.g. localhost
Definitions
Credentials for a private container registry.
auth string
The registry authentication.
The auth
field is a base64-encoded authentication string of username: password
or a token.
identityToken string
The identity token.
password string
The registry password.
registry string
The registry URL.
If not defined, the registry will be extracted from the image name.
registryToken string
The registry token.
username string
The registry username.