Package version:

Container App base container definition.

interface BaseContainer {
    args?: string[];
    command?: string[];
    env?: EnvironmentVar[];
    image?: string;
    imageType?: string;
    name?: string;
    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.

resources?: ContainerResources

Container resource requirements.

volumeMounts?: VolumeMount[]

Container volume mounts.