Skip to content

dsdk / v1.47 / MountPoint

Type Alias: MountPoint ​

MountPoint: object

MountPoint represents a mount point configuration inside the container. This is used for reporting the mountpoints in use by a container.

Type declaration ​

NameTypeDescription
Destination?stringDestination is the path relative to the container root (/) where the Source is mounted inside the container.
Driver?stringDriver is the volume driver used to create the volume (if it is a volume).
Mode?stringMode is a comma separated list of options supplied by the user when creating the bind/volume mount. The default is platform-specific ("z" on Linux, empty on Windows).
Name?stringName is the name reference to the underlying data defined by Source e.g., the volume name.
Propagation?stringPropagation describes how mounts are propagated from the host into the mount point, and vice-versa. Refer to the Linux kernel documentation for details. This field is not used on Windows.
RW?booleanWhether the mount is mounted writable (read-write).
Source?stringSource location of the mount. For volumes, this contains the storage location of the volume (within /var/lib/docker/volumes/). For bind-mounts, and npipe, this contains the source (host) part of the bind-mount. For tmpfs mount points, this field is empty.
Type?"bind" | "volume" | "tmpfs" | "npipe" | "cluster"The mount type: - bind a mount of a file or directory from the host into the container. - volume a docker volume with the given Name. - tmpfs a tmpfs. - npipe a named pipe from the host into the container. - cluster a Swarm cluster volume