Package version:

Container App container definition

interface Container {
    args?: string[];
    command?: string[];
    env?: EnvironmentVar[];
    image?: string;
    imageType?: string;
    name?: string;
    probes?: ContainerAppProbe[];
    resources?: ContainerResources;
    volumeMounts?: VolumeMount[];
}

Hierarchy (view full)

Properties

args?: string[]

Container start command arguments.

command?: string[]

Container start command.

Container environment variables.

image?: string

Container image tag.

imageType?: string

The type of the image. Set to CloudBuild to let the system manages the image, where user will not be able to update image through image field. Set to ContainerImage for user provided image.

name?: string

Custom container name.

List of probes for the container.

resources?: ContainerResources

Container resource requirements.

volumeMounts?: VolumeMount[]

Container volume mounts.