Values.ExpressGatewayContainerSourceDefines the configuration for the primary container in an Express service. This container receives traffic from the Application Load Balancer and runs your application code. The container configuration includes the container image, port mapping, logging settings, environment variables, and secrets. The container image is the only required parameter, with sensible defaults provided for other settings.
type nonrec t = {image : String_.t;The image used to start a container. This string is passed directly to the Docker daemon. Images in the Docker Hub registry are available by default. Other repositories are specified with either repository-url/image:tag or repository-url/image@digest. For Express services, the image typically contains a web application that listens on the specified container port. The image can be stored in Amazon ECR, Docker Hub, or any other container registry accessible to your execution role.
*)containerPort : BoxedInteger.t option;The port number on the container that receives traffic from the load balancer. Default is 80.
*)awsLogsConfiguration : ExpressGatewayServiceAwsLogsConfiguration.t option;The log configuration for the container.
*)repositoryCredentials : ExpressGatewayRepositoryCredentials.t option;The configuration for repository credentials for private registry authentication.
*)command : StringList.t option;The command that is passed to the container.
*)environment : EnvironmentVariables.t option;The environment variables to pass to the container.
*)secrets : SecretList.t option;The secrets to pass to the container.
*)}