Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 1.15 KB

README.md

File metadata and controls

26 lines (19 loc) · 1.15 KB

eb-worker-docker-nodejs

Elastic Beanstalk worker tiers with docker sample for NodeJS

Inspired from

installation

  1. Create an Elastic Beanstalk application with
  1. Upload the content of this projet as an application version
  2. Deploy to your environment
  3. Send some messages to the SQS queue associated with your worker application
  4. Get the logs to see the results

notes

Cloudwatch logs

If you activate cloudwatch log uploads, you will see all logs in cloudwatch, including eb, docker, and the nodejs server logs.

docker privileged flag

.ebextension/01-dockerrun.config shows a workaround for running docker with "--privileged" flag

this is absolutely not needed for this sample to work, but i included it here as a reference to solve this issue : aws-samples/eb-docker-virtual-hosting#1