Skip to content

Commit

Permalink
adjust FILENO for docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
paoloo committed Jul 26, 2019
1 parent b37be82 commit cfa8598
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions modules/fargate/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,13 @@ resource "aws_ecs_task_definition" "app" {
"memory": ${var.fargate_memory},
"name": "app",
"networkMode": "awsvpc",
"ulimits": [
{
"name": "nofile",
"softLimit": 1000000,
"hardLimit": 1000000
}
],
"portMappings": [
{
"containerPort": ${var.app_port},
Expand Down

0 comments on commit cfa8598

Please sign in to comment.