Package version:

Volume mount for the Container App.

interface VolumeMount {
    mountPath?: string;
    subPath?: string;
    volumeName?: string;
}

Properties

mountPath?: string

Path within the container at which the volume should be mounted.Must not contain ':'.

subPath?: string

Path within the volume from which the container's volume should be mounted. Defaults to "" (volume's root).

volumeName?: string

This must match the Name of a Volume.