Module Values.ContainerSource

Describes the settings of a container that will be launched, or that is launched, to an Amazon Lightsail container service.

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

    The name of the image used for the container. Container images sourced from your Lightsail container service, that are registered and stored on your service, start with a colon (:). For example, if your container service name is container-service-1, the container image label is mystaticsite, and you want to use the third (3) version of the registered container image, then you should specify :container-service-1.mystaticsite.3. To use the latest version of a container image, specify latest instead of a version number (for example, :container-service-1.mystaticsite.latest). Lightsail will automatically use the highest numbered version of the registered container image. Container images sourced from a public registry like Docker Hub don't start with a colon. For example, nginx:latest or nginx.

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

    The launch command for the container.

    *)
  3. environment : Environment.t option;
    (*

    The environment variables of the container.

    *)
  4. ports : PortMap.t option;
    (*

    The open firewall ports of the container.

    *)
}
Sourceval make : ?image:??? -> ?command:??? -> ?environment:??? -> ?ports:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] list | `Map of ([> `String of String_.t ] * [> `Enum of string | `String of String_.t ]) list | `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