
Docker Push
CertifiedPush Docker images to a registry
Docker Push
Push Docker images to a registry
Pushes existing local images by tag to a remote registry using the available Docker daemon and optional registry credentials. Tags must already exist locally.
type: io.kestra.plugin.docker.PushExamples
Push a previously built image to DockerHub
id: docker_push
namespace: company.team
tasks:
- id: push
type: io.kestra.plugin.docker.Push
tags:
- image/demo:latest
credentials:
registry: https://index.docker.io/v1/
username: "{{ secret('DOCKERHUB_USERNAME') }}"
password: "{{ secret('DOCKERHUB_PASSWORD') }}"
Push the image from a previous Build task
id: docker_push_with_tag
namespace: company.team
tasks:
- id: build
type: io.kestra.plugin.docker.Build
dockerfile: |
FROM alpine
RUN echo "hello"
tags:
- my-registry.example.com/my-app:latest
- id: push
type: io.kestra.plugin.docker.Push
tags:
- my-registry.example.com/my-app:latest
credentials:
registry: my-registry.example.com
username: "{{ secret('REGISTRY_USERNAME') }}"
password: "{{ secret('REGISTRY_PASSWORD') }}"
Properties
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.