Bypass Amazon Elastic Beanstalk Worker SQS health check
3.0K
Want your AWS Beanstalk Worker ENV green without using the SQS? Add a few simple lines to your Dockerrun.aws.json and your ENV will be green immediately.
SQS is a must when using Amazon Elastic Beanstalk Worker can be difficult for those who have existing stacks. This is a lightweight NodeJS server that receives the POST requests of the daemon process and simply returns status code success.
docker run -d lmduc/sqsd
Example of Dockerrun.aws.json
{
"AWSEBDockerrunVersion": 2,
"containerDefinitions": [
{
"name": "sqsd",
"image": "lmduc/sqsd",
"memory": "64",
"essential": true,
"portMappings": [
{
"hostPort": 80,
"containerPort": 3000
}
]
}
]
}
Content type
Image
Digest
Size
254 MB
Last updated
about 8 years ago
docker pull lmduc/sqsd