mirror of
https://github.com/tektoncd/catalog.git
synced 2024-11-24 06:15:46 +00:00
b48b17321d
At the time of writing, the stable `docker:dind` is broken, the solution is to roll back to the previous version (https://github.com/containerd/containerd/issues/4837). In other words, `docker:dind` should be temporarily replaced with `docker:19-dind`. I think allowing users to specify the docker-in-docker image via params is the best way to get around this issue. |
||
---|---|---|
.. | ||
samples | ||
tests | ||
docker-build.yaml | ||
OWNERS | ||
README.md |
Docker
Docker-Build
The Docker Build task builds source into a container image using Docker. This command executes the directives in the Dockerfile
to assemble a container image, then pushes that image to a container registry.
Install the Docker Build Task
kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/master/task/docker-build/0.1/docker-build.yaml
Parameters
- image: The name (reference) of the image to build.
- builder_image: The name of the image containing the Docker tool. See
note below. (default:
docker.io/docker:latest
) - dind_image: The name of the image used by
docker-in-docker
sidecar container (default:docker:dind
). - dockerfile: The path to the
Dockerfile
to execute (default:./Dockerfile
) - context: Path to the directory to use as context (default:
.
) - build_extra_args: Extra parameters passed for the build command when
building images. (default:
""
) - push_extra_args: Extra parameters passed for the push command when
pushing images. (default:
""
)
Workspaces
- source: A Workspace volume containing the source to build.
Usage
apiVersion: tekton.dev/v1beta1
kind: TaskRun
metadata:
name: docker
spec:
params:
- name: image
value: localhost:5000/nocode
taskRef:
name: docker-build
workspaces:
- name: source
persistentVolumeClaim:
claimName: docker-source-pvc