3

The following article explains detailed how to create a custom Tomcat based AMI for Beanstalk. The key is running the following commands before creating your AMI:

sudo -s
cd /etc/init.d
./httpd start
./tomcat7 start

However I didn't find any documentation what the configuration must look like on the new Ruby based Beanstalk servers.

Does anyone already have experiance with it?

Elias
  • 227
  • 2
  • 4

1 Answers1

0

The new Ruby based Elastic Beanstalk containers do not require any special configuration prior to deploying your Rack based web application. You may find you need to customize the environment.

If you need to manage the packages installed on your environment, you should use the .ebextensions configuration that is deployed with your web application. You can learn more about this here and here.

If you need to install Ruby gems that your web application relies on, you should include a Gemfile with your web application. These gems will be installed when deploying your application.

HopelessN00b
  • 53,385
  • 32
  • 133
  • 208
Trevor Rowe
  • 116
  • 2