Skip to content

Latest commit

 

History

History
executable file
·
28 lines (17 loc) · 1.38 KB

Mount.md

File metadata and controls

executable file
·
28 lines (17 loc) · 1.38 KB

DocNodeApi.Mount

Properties

Name Type Description Notes
target String Container path. [optional]
source String Mount source (e.g. a volume name, a host path). [optional]
type String 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. [optional]
readOnly Boolean Whether the mount should be read-only. [optional]
consistency String The consistency requirement for the mount: `default`, `consistent`, `cached`, or `delegated`. [optional]
bindOptions MountBindOptions [optional]
volumeOptions MountVolumeOptions [optional]
tmpfsOptions MountTmpfsOptions [optional]

Enum: TypeEnum

  • bind (value: "bind")

  • volume (value: "volume")

  • tmpfs (value: "tmpfs")