container-transform
container-transform copied to clipboard
added ECS ulimit support
- 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
}
]