Skip to content

Instantly share code, notes, and snippets.

@ssskip
Created December 4, 2018 06:20
Show Gist options
  • Save ssskip/cb70403ee82842a53a839ea43bb8d998 to your computer and use it in GitHub Desktop.
Save ssskip/cb70403ee82842a53a839ea43bb8d998 to your computer and use it in GitHub Desktop.
open file limit ECS

Configuring Linux usage limits with Docker and AWS ECS

  • ECS TASK Definitions.
"containerDefinitions": [
    {
...
      "ulimits": [
        {
          "softLimit": 1024000,
          "hardLimit": 2024000,
          "name": "nofile"
        }
      ]
...
    }
  ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment