AWS Multiple Docker Environments: Difference between revisions

From Littledamien Wiki
Jump to navigation Jump to search
(Created page with "== Overview == The goal is to cut down on costs in AWS. Each Elastic Beanstalk environment must its own corresponding EC2 instance, and each of those EC2 instances cost money...")
 
(No difference)

Latest revision as of 13:19, 24 July 2018

Overview[edit]

The goal is to cut down on costs in AWS. Each Elastic Beanstalk environment must its own corresponding EC2 instance, and each of those EC2 instances cost money.

So for example, if there is a staging and production environment, it's necessary to pay for both the EC2 instances needed to support them. If, however, the web application can be hosted within a docker container, then it's possible to use a Multicontainer Docker Environment and run separate Docker containers for staging and production within a single EBS instance. [1]

Notes[edit]