Module Values.MountPointSource

Details 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.

Sourcetype nonrec t = {
  1. containerPath : String_.t option;
    (*

    The path on the container where the host volume is mounted.

    *)
  2. 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.

    *)
  3. sourceVolume : String_.t option;
    (*

    The name of the volume to mount.

    *)
}
Sourceval make : ?containerPath:??? -> ?readOnly:??? -> ?sourceVolume:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t