AWS Elastic Beanstalk

Here are some useful command working with AWS Elastic Beanstalk eb init = initialize environment eb list eb logs eb console = open aws console eb open = open application in web browser eb appversion = show application versions eb health = show health of application eb codesource = select local or codecommit eb deploy … Read more

Deploy Docker Image using Elastic Beanstalk

First create a file docker-eb-run.json with following content { “AWSEBDockerrunVersion”: “1”, “Image”: { “Name”: “bitnami/tomcat” }, “Ports”: [ { “ContainerPort”: “8080” } ] } here i used docker container bitnami/tomcat, you can use any container. Login to AWS Console, go to AWS Elastic Beanstalk page. Click Get Started. On next page, it ask for Application … Read more

Getting Started with Amazon Elastic Beanstalk

AWS Elastic Beanstalk is a PaaS (Platform As Service) allow you to quickly deploy applications. To install AWS Elastic Beanstalk command line tool, run sudo pip install awsebcli Starting your first Project Create a folder with a php file. mkdir ~/www/eb-project-1 cd ~/www/eb-project-1 echo “” > index.php Add our project to git. git init git … Read more

Amazon AWS Elastic Beanstalk Command Line Interface

To install Amazon AWS Elastic Beanstalk Command Line Interface (EB CLI), run pip install awsebcli To create a project. mkdir serverok cd serverok git init eb init To create servers in AWS, run eb create It ask some question, once you done, it shows URL like following In this cause, the URL http://serverok-dev.us-west-2.elasticbeanstalk.com/ can be … Read more