Super Mario Game on AWS ECS Fargate: A Comprehensive Guide
Deploy Super Mario on AWS ECS with a VPC, security groups, ALB, ECS cluster, task definitions, and Amazon ECR for Docker images in this comprehensive guide.
- Set Up the VPC:
- Create a new Virtual Private Cloud (VPC).
- Configure four subnets: two public subnets for external access and two private subnets for internal services.
- Set up three route tables: one public route table for the public subnets and two private route tables for the private subnets.
- Configure an Internet Gateway and attach it to the VPC to enable internet access for the public subnets.
- Set up a NAT Gateway in the public subnets to allow instances in the private subnets to access the internet securely.
- Configure Security Groups:
- Create a security group for the ECS cluster to allow necessary inbound and outbound traffic.
- Create a security group for the Application Load Balancer (ALB) to control traffic to and from the ALB.
- Link Repository Terraform: https://github.com/icsma/Super-Mario-Game-on-AWS-Elastic-Container-Service-AWS-ECS-Fargate/tree/main
- Set Up the Application Load Balancer (ALB):
- Create an ALB and configure listeners and target groups to distribute incoming traffic to the ECS tasks running in the private subnets.
- Set Up Amazon ECR:
- Create a repository in Amazon Elastic Container Registry (ECR).
- Build the Docker image for the Super Mario game and push it to the ECR repository.
1
2
3
4
docker pull pengbai/docker-supermario
aws ecr get-login-password --region us-east-1 | docker login --username AWS --password-stdin id-account.dkr.ecr.us-east-1.amazonaws.com
docker tag pengbai/docker-supermario:latest id-account.dkr.ecr.us-east-1.amazonaws.com/supermario:latest
docker push 244745843377.dkr.ecr.us-east-1.amazonaws.com/supermario:latest
- Create the ECS Cluster:
- Set up an ECS cluster to manage the containerized application.