This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
dagger/docs/reference/dagger/engine.md
Sam Alba 146971c8f1 fixed linting errors
Signed-off-by: Sam Alba <samalba@users.noreply.github.com>
2021-12-14 09:08:58 -08:00

1.8 KiB

sidebar_label
engine

alpha.dagger.io/dagger/engine

import "alpha.dagger.io/dagger/engine"

engine.#Context

engine.#Context Inputs

No input.

engine.#Context Outputs

No output.

engine.#FS

A reference to a filesystem tree. For example: - The root filesystem of a container - A source code repository - A directory containing binary artifacts Rule of thumb: if it fits in a tar archive, it fits in a #FS.

engine.#FS Inputs

No input.

engine.#FS Outputs

No output.

engine.#ImageConfig

Container image config. See OCI. Spec left open on purpose to account for additional fields. Image Spec Docker Superset

engine.#ImageConfig Inputs

No input.

engine.#ImageConfig Outputs

No output.

engine.#Plan

A deployment plan executed by dagger up

engine.#Plan Inputs

No input.

engine.#Plan Outputs

No output.

engine.#Pull

Download a container image from a remote repository

engine.#Pull Inputs

No input.

engine.#Pull Outputs

No output.

engine.#Secret

A reference to an external secret, for example: - A password - A SSH private key - An API token Secrets are never merged in the Cue tree. They can only be used by a special filesystem mount designed to minimize leak risk.

engine.#Secret Inputs

No input.

engine.#Secret Outputs

No output.

engine.#Service

A reference to a network service endpoint, for example: - A TCP or UDP port - A unix or npipe socket - An HTTPS endpoint

engine.#Service Inputs

No input.

engine.#Service Outputs

No output.