dockerRuns
dockerRuns(
input:WithMeta<DockerRunsInput>):DockerRunsModel
Create a Docker runs model.
Defines the runs section of a Docker container action, specifying the
image, entrypoint, arguments, and lifecycle hooks.
Parameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
|
|
|
Docker runs configuration and optional metadata. |
Returns
Section titled “Returns”DockerRunsModel
A branded DockerRunsModel.
Example
Section titled “Example”const runs = dockerRuns({ using: "docker", image: "Dockerfile", args: ["--name", "${{ inputs.name }}"],});