Skip to content

vinayselvaraj/elasticbeanstalk-docker-ulimit-example

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

elasticbeanstalk-docker-ulimit-example

Example Elastic Beanstalk Docker project that updates the ulimit settings using the following ebextensions config:

files:
  "/etc/security/limits.conf":
    mode: "00644"
    owner: "root"
    group: "root"
    content: |
      *         hard    nofile      65536
      *         soft    nofile      65536

commands:
  01restart_docker:
    command: /sbin/service docker stop && ulimit -n 65536 && /sbin/service docker start

About

Example Elastic Beanstalk Docker project that updates the ulimit settings

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published