ECS-Cloudformation/service/nginx-task-definition.json

19 lines
318 B
JSON
Raw Normal View History

2023-09-10 07:14:03 +00:00
{
"family": "nginx-task",
"containerDefinitions": [
{
"name": "nginx-container",
"image": "<your-ecr-image-uri>",
"memory": 512,
"cpu": 256,
"essential": true,
"portMappings": [
{
"containerPort": 80,
"hostPort": 80
}
]
}
]
}