Package version:

Container App container definition

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

name?: string

Custom container name.

List of probes for the container.

resources?: ContainerResources

Container resource requirements.

volumeMounts?: VolumeMount[]

Container volume mounts.