Download the app from AWS Elastic Beanstalk

How to download an application from Elastic Beanstalk? I downloaded the application via the web interface and made some changes in real time (this is a wordpress site), and now I want to download the whole site.

Thanks.

+10
amazon amazon-web-services elastic-beanstalk download beanstalk
source share
2 answers

You can download the site from the Source Column version table in the AWS Console.

  • Login to AWS Console
  • Go to Services-> Beanstalk → Application Versions

Alternatively, you can also scp a file from an EC2 instance bound to your beanstalk application.

+11
source share

Using the CLI EB client, you can run it from the local application directory:

eb labs download 

It will download the code archive of the latest version of the application in ./.elasticbeanstalk/downloads/<some name with numbers>.zip

+7
source share

All Articles