Learn – how AWS Lambda work with Docker container
Explained How AWS Lambda worked with ECR, ECS, Docker in details
Lambda explained in Hindi
====================================
Hello and welcome to this series on AWS Lambda.
In this video, I will go over how to create lambda funcation with container docker,
AWS provides a set of open-source base images that you can use to create your container image. You can package your Lambda function code and dependencies as a container image, using tools such as the Docker CLI. You can then upload the image to your container registry hosted on Amazon Elastic Container Registry (Amazon ECR).
aws lambda or amazon lambda is a computing service that runs code in response to events and automatically manages the computing resources required by that code.
============================
Below topics are explained in this AWS Lambda Tutorial:
00:49 – what to cover
03:00 – Explained How to Install docker on linux EC2 machine
03:26 – Explained how to install and configure AWS-CLI
04:28 – Explained how to push docker image to ECR
04:50 – DEMO – Creating AWS Lambda function with Container Image reside in AWS ECR
==============================================
Install Docker for Linux:
Red Hat:
– sudo yum install -y docker
– sudo service docker start
– sudo usermod -aG docker $(whoami)
– Restart operating system.
– Try: docker and docker container ls
Ubuntu:
Download the docker install script:
– wget -qO- https://get.docker.com/ | sh
– sudo usermod -aG docker $(whoami)
– Restart operating system.
– Try: docker and docker contaienr ls
===============================
#aws
#lambda
#docker
#dockercontainer
THINGS YOU NEED TO KNOW
Most Recent Video – https://www.youtube.com/watch?v=GZc5JU6lMLA
Most Trending Video – https://youtu.be/Ee0GX668aYc
============================================
#lambda python function
Playlists
Docker Playlist – https://youtube.com/playlist?list=PLpLjvo3GR71sKtwJLbzxn3fnmIxnqpIWr
AWS Playlist – https://youtube.com/playlist?list=PLpLjvo3GR71uHS4ESDSVT_yg2HeAXvB2V
AWS Devops Playlist – https://youtube.com/playlist?list=PLpLjvo3GR71vWuLJcq7TIIeC8b5xNB4Nx
===============================================
Thanks for watching!
If you like my content, please subscribe.
============================================
WHO AMI I : I am Vicky Seth, a DEVOPSāAWSāCLOUD Engineer, I use my technical background to make videos about technology that help you to grow.
Email – [email protected]
source
Hi VK. thanks for the video, but you did not gave the link for the files
Next time in the title say its in Hindi. Ok Ji?
Hi, are you able to provide a tutorial how to automate services when a latest image is push to ECR, EventBridge or Lambda will be invoked and triggered to deploy or force new deployment in ECS.