Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/cicada/expiremental/image.ts>ImageOptions

Write CI/CD pipelines using TypeScript
Go to Latest
interface ImageOptions
implements CommonImageOptions
import { type ImageOptions } from "https://deno.land/x/cicada@v0.1.49/expiremental/image.ts";

An image that is built by Cicada

Properties

name: string

The name of the image. This will be used as the name of the docker image.

optional
entrypoint: string[] | string

Entry point to run when the container starts. This can be a string or an array of strings.

optional
cmd: string[] | string

The command to run when the container starts. This can be a string or an array of strings.

optional
exposedPorts: (number | string)[]

The port that the container exposes. This can be a number or a string.

optional
user: string

The user that the container should run as.

optional
stopSignal: string

The signal to send to the container to stop it.