Mount

interface Mount {
    BindOptions?: MountBindOptions;
    Consistency?: string;
    ReadOnly?: boolean;
    Source?: string;
    Target?: string;
    TmpfsOptions?: MountTmpfsOptions;
    Type?: MountTypeEnum;
    VolumeOptions?: MountVolumeOptions;
}

Properties

BindOptions?: MountBindOptions
Consistency?: string

The consistency requirement for the mount: default, consistent, cached, or delegated.

ReadOnly?: boolean

Whether the mount should be read-only.

Source?: string

Mount source (e.g. a volume name, a host path).

Target?: string

Container path.

TmpfsOptions?: MountTmpfsOptions

The mount type. Available types: - bind Mounts a file or directory from the host into the container. Must exist prior to creating the container. - volume Creates a volume with the given name and options (or uses a pre-existing volume with the same name and options). These are not removed when the container is removed. - tmpfs Create a tmpfs with the given options. The mount source cannot be specified for tmpfs. - npipe Mounts a named pipe from the host into the container. Must exist prior to creating the container.

VolumeOptions?: MountVolumeOptions