container-transform icon indicating copy to clipboard operation
container-transform copied to clipboard

added ECS ulimit support

Open minzhang28 opened this issue 7 years ago • 0 comments

  • fixed the test data file path issue
  • added Docker Compose to ECS ulimit support

docker-compose input

    ulimits:
      nproc: 65535
      nofile:
        soft: 20000
        hard: 40000

ECS task definition output

            "ulimits": [
                {
                  "hardLimit": 65535,
                  "name": "nproc",
                  "softLimit": 65535

                },
                {
                  "hardLimit": 40000,
                  "name": "nofile",
                  "softLimit": 20000

                }
            ]

minzhang28 avatar Oct 26 '17 05:10 minzhang28