sparse-intern-71089
07/20/2021, 7:40 AMbroad-gold-44713
07/20/2021, 1:11 PMcommand
option for the containers definition:
const task = new awsx.ecs.FargateTaskDefinition(
'app',
{
cpu: '1024',
memory: '2048' /* MiB */,
containers: {
app: {
image: "ubuntu",
command: ['/start'],
}
}
}
)
bumpy-translator-35180
07/20/2021, 1:15 PM