Values.MountPointSourceDetails for a Docker volume mount point that's used in a job's container properties. This parameter maps to Volumes in the Create a container section of the Docker Remote API and the --volume option to docker run.
type nonrec t = {containerPath : String_.t option;The path on the container where the host volume is mounted.
*)readOnly : Boolean.t option;If this value is true, the container has read-only access to the volume. Otherwise, the container can write to the volume. The default value is false.
*)sourceVolume : String_.t option;The name of the volume to mount.
*)}