AWS - ECS and Fargate
You have this ECS task definition snippet:
When you try to run this task, it fails with an error about missing port mappings. What is the likely fix?
{
"containerDefinitions": [{
"name": "app",
"image": "myapp:latest",
"cpu": 512,
"memory": 1024
}]
}When you try to run this task, it fails with an error about missing port mappings. What is the likely fix?
