ECS problems ulimits - tooltwist/documentation GitHub Wiki
The tooltwist/mysql-phpmyadmin container may need ulimits set so phpmyadmin can be run. A nofile limit of 1024000 works just fine. This needs to be set in the JSON definition for ECS.
"ulimits": [
{
"softLimit": 1024000,
"hardLimit": 1024000,
"name": "nofile"
}
]
For more details see: http://www.computerworld.com/article/3067303/cloud-computing/how-to-configuring-linux-usage-limits-with-docker-and-aws-ecs.html