Module Values.ImageConfigSource

Configuration values that override the container image Dockerfile settings. For more information, see Container image settings.

Sourcetype nonrec t = {
  1. entryPoint : StringList.t option;
    (*

    Specifies the entry point to their application, which is typically the location of the runtime executable.

    *)
  2. command : StringList.t option;
    (*

    Specifies parameters that you want to pass in with ENTRYPOINT.

    *)
  3. workingDirectory : WorkingDirectory.t option;
    (*

    Specifies the working directory.

    *)
}
Sourceval make : ?entryPoint:??? -> ?command:??? -> ?workingDirectory:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] list | `String of WorkingDirectory.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