nemo_microservices.types.jobs.docker_volume_mount#

Module Contents#

Classes#

API#

class nemo_microservices.types.jobs.docker_volume_mount.DockerVolumeMount(/, **data: typing.Any)#

Bases: nemo_microservices._models.BaseModel

allow_create_volume: Optional[bool]#

None

Whether to allow the creation of the volume if it does not exist (default: false).

kind: Optional[typing_extensions.Literal[volume, tmpfs]]#

None

Type of the Docker volume to mount.

Options are ‘volume’ or ‘tmpfs’ (default: ‘volume’). tmpfs volumes are only supported on Linux hosts.

mount_path: str#

None

Path inside the container where the volume will be mounted

options: Optional[Dict[str, object]]#

None

Additional options for the volume

volume_name: str#

None

Name of the Docker volume to mount