AWS Lab ECS FARGATE - 2 | AWS Practice Hands on | Elastic Container Service

Опубликовано: 04 Март 2026
на канале: PROJECTS By Doing
3,731
33

This is an episode of the educational video series 'AWS By Doing' wherein you can learn AWS ECS FARGATE by following along with an AWS certified Solutions Architect. Expect new episodes every Monday and Thursday!

This is a hands-on lab on: AWS ECS FARGATE

Save the Application image in our Docker Hub Repository.
Create an ECS Cluster.
Create an ECS Fargate Task Definition.
Launch the Task in the Cluster.
Test the Application.
View the cloud footprint in Cloud Formation.
Delete the Test-Cluster, Test-VPC and Test-Task-Definition.

Please give a thumbs up to this video to encourage us and share this video with your friends and colleagues! Also, subscribe to this channel 'AWS By Doing' and we will update you regularly with our LATEST and GREATEST offerings! Write in a comment of what you liked and how we can improve!

Link to our Playlist:
   • AWS Labs | Intro to AWS By Doing  

We acknowledge and thank the official AWS Documentation material which we have used to produce this educational video.
Link to AWS documentation:
https://docs.aws.amazon.com/AmazonECS...

Links/Commands/Code Snippets:

Content of Dockerfile :

FROM nginx:1.10.1-alpine
COPY src/html /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]


Location of sample application's docker image:
https://hub.docker.com/r/madhusdocker...