Hasan's Post

Tutorial repository

View on GitHub
23 September 2021

Using Containers

by Hasan

This week

Microservices

AWS Fargate

Fargates key concept to understand

Container Networking

  1. How to you get traffic To our tasks on our instances?

here mostly application load balancer(ALB) will be discussed.

  1. We want to our containers to be able to communicate with outside services.

Actually if EC2 networking is understood then you also understand The AWS VPC container networking mode with ECS. If the task defination uses a AWS VPC mode you are required to use a VPC subnets and a secuirity groups for your containers. However it is good practice as it provides greater level of secuirity. This is recommended appraoch. Everything needs to be set up in task defination.

Persistent Storage

tags: