Reputation: 7788
I'm wondering if aws offers a simple solution like beanstalk which consist of tomcat but does not scale. I need to deploy a war that runs scheduled task and beanstalk kills my instances and scales thus messing up my scheduled jobs.
edit I'm aware of creating a custom ec2 instance, I'm looking for something a little bit simpler like beanstalk, I'm not highly skilled in linux.
Upvotes: 0
Views: 58
Reputation: 201058
Elastic Beanstalk supports Single Instance Environments. These environments won't scale.
Upvotes: 1
Reputation: 7246
You can create Docker image using one of base images (For example: https://hub.docker.com/_/tomcat/), push it to ECR then deploy to ECS.
https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ECS_GetStarted.html
Upvotes: 2