Docker pipelines execute pipeline commands inside ephemeral Docker containers. Docker containers provide isolation, allowing safe execution of concurrent pipelines on the same machine.
Example pipeline configuration:
|
|
The kind and type attributes define a Docker pipeline.
|
|
The steps
section defines a series of shell commands. These commands are executed inside the Docker container as the Entrypoint
. If any command returns a non-zero exit code, the pipeline fails and exits.
|
|