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/docker
Richard Jones eadaf73d3c
regenerated docs
Signed-off-by: Richard Jones <richard@dagger.io>
2021-09-28 09:02:38 -06:00
..
compose.md docs: ♻️ merge API Reference and Universe menu entries 2021-09-08 15:19:19 +02:00
README.md regenerated docs 2021-09-28 09:02:38 -06:00

sidebar_label
docker

alpha.dagger.io/docker

Docker container operations

import "alpha.dagger.io/docker"

docker.#Build

Build a Docker image from source

docker.#Build Inputs

Name Type Description
source dagger.#Artifact Build context
dockerfile *null | string Dockerfile passed as a string

docker.#Build Outputs

No output.

docker.#Command

A container image that can run any docker command

docker.#Command Inputs

Name Type Description
command string Command to execute
registries [] Image registries

docker.#Command Outputs

No output.

docker.#Pull

Pull a docker container

docker.#Pull Inputs

Name Type Description
from string Remote ref (example: "index.docker.io/alpine:latest")

docker.#Pull Outputs

No output.

docker.#Push

Push a docker image to a remote registry

docker.#Push Inputs

Name Type Description
target string Remote target (example: "index.docker.io/alpine:latest")
source dagger.#Artifact Image source

docker.#Push Outputs

Name Type Description
ref string Image ref
digest string Image digest

docker.#Run

docker.#Run Inputs

Name Type Description
ref string Image reference (e.g: nginx:alpine)
run.command """\n # Run detach container\n OPTS=""\n \n if [ ! -z "$CONTAINER_NAME" ]; then\n \tOPTS="$OPTS --name $CONTAINER_NAME"\n fi\n \n if [ ! -z "$CONTAINER_PORTS" ]; then\n \tOPTS="$OPTS -p $CONTAINER_PORTS"\n fi\n \n docker container run -d $OPTS "$IMAGE_REF"\n """ Command to execute
run.env.IMAGE_REF string -
run.registries [] Image registries

docker.#Run Outputs

No output.