Skip to main content

AwsEcsExecutionModuleDeploymentContainerPropertiesImageSchema

Defines the container image properties for execution deployments. This schema configures the container image settings including commands, networking, and runtime characteristics.

@group

Modules/Execution/AwsEcsExecution

Index

Properties

optionalcommand

command?: null | string = ...

The command to run when the container starts. This overrides the default command specified in the Docker image.

essential

essential: boolean = ...

Whether this container is essential for the task. If an essential container fails, the entire task is stopped.

name

name: string = ...

The name of the container within the task definition. This name is used to reference the container in other configurations.

optionalports

ports?: { containerPort: number; protocol: tcp | udp }[] = ...

The port mappings for the container. These define which container ports are exposed and on which protocols.

Page Options