Module Values.DaemonLinuxParametersSource

The Linux-specific options that are applied to the daemon container, such as Linux kernel capabilities.

Sourcetype nonrec t = {
  1. capabilities : KernelCapabilities.t option;
    (*

    The Linux capabilities for the container that are added to or dropped from the default configuration provided by Docker.

    *)
  2. devices : DevicesList.t option;
    (*

    Any host devices to expose to the container.

    *)
  3. initProcessEnabled : BoxedBoolean.t option;
    (*

    Run an init process inside the container that forwards signals and reaps processes.

    *)
  4. tmpfs : TmpfsList.t option;
    (*

    The container path, mount options, and size (in MiB) of the tmpfs mount.

    *)
}
Sourceval make : ?capabilities:??? -> ?devices:??? -> ?initProcessEnabled:??? -> ?tmpfs:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BoxedBoolean.t | `List of [> `Structure of (string * [> `Integer of Integer.t | `List of [> `Enum of string | `String of String_.t ] list | `String of String_.t ]) list ] list | `Structure of (string * [> `List of [> `String of String_.t ] list ]) list ]) 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