Тёмный
No video :(

Creating a Continuous Delivery Pipeline With GitHub Actions: How to Deploy To AWS EC2 Instantly! 

Shubham Verma
Подписаться 168
Просмотров 23 тыс.
50% 1

Creating a Continuous Delivery Pipeline With GitHub Actions: How to Deploy To AWS EC2 Instantly!
Here is the repo:
github.com/var...

Опубликовано:

 

26 авг 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 63   
@shubhamverma1407
@shubhamverma1407 10 месяцев назад
You can checkout the code here: github.com/varsubham/cicd-pipeline
@oscarenriqqdev6931
@oscarenriqqdev6931 3 месяца назад
THANK YOU!! A lot of information in 12 minutes.
@adventurer2395
@adventurer2395 8 месяцев назад
This video needs to be watched at 0.25
@Cloud.Developer
@Cloud.Developer 6 месяцев назад
That's what I thought. Too fast!
@kitkarson4226
@kitkarson4226 2 месяца назад
Straight to the point. no time waste. 👍
@krishmarsonia2059
@krishmarsonia2059 2 месяца назад
For all those who are getting error of An image does not exist locally with the tag: ***/ - name: Building the Docker image run: docker build -t {your image name} . - name: Tagging image run: docker tag {your image name}:latest {your dockerhub username}/{your image name}:latest - name: Pushing to DockerHub run: docker push {your dockerhub username}/{your image name}:latest Add the last 3 commands like this
@naveedalirehmani4135
@naveedalirehmani4135 10 месяцев назад
All this information in just 12 minutes! this video was all I needed. it was a hidden gem. thank you very much.
@shaktipattnayak
@shaktipattnayak Месяц назад
This is exactly what I was looking for thank you Shubham.
@user-xi2nv2td5h
@user-xi2nv2td5h 3 месяца назад
This video such a informative and easy to understand. next time when you make any video please speak little bit slowly. Have a great Future. God Bless you Shubham
@samirp.3181
@samirp.3181 11 месяцев назад
Bhai awesome......I'm speechless after seeing this......I'm using docker images and containers to deploy (not gitHub) but after watching this.....I'm stunned thank you
@simpledataengineer5231
@simpledataengineer5231 Месяц назад
Amazing video!
@MohasinKR-rs4kc
@MohasinKR-rs4kc 4 месяца назад
Your voice such calmness!
@user-ko5js1ho8y
@user-ko5js1ho8y 9 месяцев назад
Great tutorial so informative and well explained in few minutes. Awesome.
@neenav1999
@neenav1999 4 месяца назад
Agreed that you know the stuff good. But a great video is the one which everyone can follow and understand including the beginners. Probably you deserve more subscribers. Explain the things slowly and bit more clearly (like in Net Nijnjas videos). why so much rush like in war zone?. Every viewer is not in same frequency like yours. Right?. good luck.
@shubhamverma1407
@shubhamverma1407 3 месяца назад
thank you, sure will keep this in mind
@stefanambrose5616
@stefanambrose5616 2 месяца назад
thank you you helped a lot
@nayeemrafsan356
@nayeemrafsan356 Месяц назад
great video!
@AmitBiswastunebox
@AmitBiswastunebox Месяц назад
love it. on to the point, no bulshit around.
@random-user-1337
@random-user-1337 9 месяцев назад
To the point video. Awesome. Thanks a lot.
@gaychin8654
@gaychin8654 7 месяцев назад
Very helpful!!! Straight and concise. Thanks!
@GreatTaiwan
@GreatTaiwan 2 дня назад
للي يشوفو فيديو ما راح انصح بطريقة دي المسألة هي انو بكون عندك 2 branches واحد لكل مرة بتعمل اصدار (كل ربع سنة مثلا او كل ٦ شهور) Prod و ثاني بكون فيه كل شغل اي تو ديت main و منه حا تعمل برانشات إضافية عشان تحل اي مشكلة مثل أضاف خاصية ما ممكن كل مرة تعمل شي تطلع حاوية جديدة الأفضل من دة انو تعملها بستخدام Tags تقدر تسوي Push git tag و تخلي ال Pipeline (workflow) بتاعك كل مرة يشوف لو ال Commit فيها Tag معينة يستخدم اسمها كإسم حاوية جديدة وقتها تتحكم في بتين تطلع حاوية
@kirteekumari3459
@kirteekumari3459 Год назад
Hey, thanks a lot for this. I did struggle at some points but your video was helpful.
@AmarKrGupta-ys1gu
@AmarKrGupta-ys1gu Год назад
Thanks bro for this video we need more video like this
@CrashTheGooner
@CrashTheGooner Год назад
Nice Shubham good job ! but this nginx config is useless as docker container once exited will never have the previous IP. But then again good for local dev env
@shubhamverma1407
@shubhamverma1407 10 месяцев назад
Thanks, yeah right IP will keep changing. Anyway this we cannot use in production also since its not a rolling update. There is some downtime between deleting old container and starting new container.
@hao57
@hao57 6 месяцев назад
Great tutorial, thanks man! 😎
@tristheflash6928
@tristheflash6928 3 месяца назад
really u are senior even super senior tks my fr very much
@satish-pokala
@satish-pokala 8 месяцев назад
Thank you 👍🏻. Helped a lot.
@warrenwei6094
@warrenwei6094 8 месяцев назад
It helps a lot, thank you!
@MrUmban
@MrUmban 11 месяцев назад
Thank you for your clear explanation
@codecoder005
@codecoder005 11 месяцев назад
good work man. it really helped me
@PanosCodeOs
@PanosCodeOs Год назад
Thank you bro this video saved me!
@gerardosalasm6213
@gerardosalasm6213 Год назад
thank you, it helps me a lot 😄
@debillion
@debillion 2 месяца назад
I tried to do a curl after the docker run using curl 0.0.0.0/8080 and I got this error curl: (52) Empty reply from server The port 8080 is opened in my security group. Do you perhaps know what I did wrong?
@flaretm1974
@flaretm1974 11 месяцев назад
Great tutorial. Very clear and straight forward. I fully understand now how this works. Will apply to my project soon. Thanks.
@HasanJaweesh-lf5fn
@HasanJaweesh-lf5fn 2 месяца назад
I thought it's 12 min long, turns out it's 12 hours long
@cuizeyue10
@cuizeyue10 9 месяцев назад
love it
@sahlcyprus939
@sahlcyprus939 6 месяцев назад
does the container ip changes whenever the new container builds ?
@vijaikannan3143
@vijaikannan3143 4 месяца назад
Really useful video. First of all thanks a lot for this informative video. I have written python docker container. The followed your video and did step by step approach. I can see the container image in my linux m/c, but when I gave dcoker ps command, nothing is displayed. I got stuck in this step. No info. about the port etc., Will you please help me where I am going wrong.
@kaokakelvin6202
@kaokakelvin6202 Месяц назад
Do a docker run.
@KapilKumar-ps6gu
@KapilKumar-ps6gu Год назад
Nice video. But whenever u make quick change in your file or command. Specify it. People can miss such things and waste lots of time to fix these minor stuffs.
@shubhamverma1407
@shubhamverma1407 10 месяцев назад
Thanks, sure will keep this in mind
@abubakersaddique851
@abubakersaddique851 Год назад
plz add your dummy nodejs code and other links from where you copy code and thanks bro for this video
@itsmehemant7
@itsmehemant7 8 месяцев назад
wah verma ji
@VarunSharma-xd8xd
@VarunSharma-xd8xd 3 месяца назад
somoeone tell me a good video where i can understand how to make ci cd pipeline im not able to understand from these kind of vidoes
@muhammadfaheem4024
@muhammadfaheem4024 10 месяцев назад
what was the fix image name commit that you did? Initially it was failed but you added something what was that change?
@shubhamverma1407
@shubhamverma1407 10 месяцев назад
I just changed the docker image name, this is the new build cmd i used (forgot to add username earlier) docker build -t varsubham/cicd-pipeline .
@codewithzardam8904
@codewithzardam8904 4 месяца назад
how to maintain the runner up all the time ...
@shubhamverma1407
@shubhamverma1407 4 месяца назад
you can run it as a service
@debillion
@debillion 2 месяца назад
cant we also use self-hosted for the CI part?
@shubhamverma1407
@shubhamverma1407 2 месяца назад
yes we can
@debillion
@debillion 2 месяца назад
@@shubhamverma1407 i have been having issues. the ec2 machine keep going offline when running the CI
@shubhamverma1407
@shubhamverma1407 2 месяца назад
@@debillion make sure you are running it as a service, so even if you logout of the machine, github runner would still be running
@VarunSharma-xd8xd
@VarunSharma-xd8xd 3 месяца назад
took me more than 2 hr to complete it
@user-ti8sz5ps7r
@user-ti8sz5ps7r Год назад
give one example clearly and slowly
@piegzini1269
@piegzini1269 7 месяцев назад
Jesteś prze dym
@jilesingh1124
@jilesingh1124 5 месяцев назад
you type very fast
@ecanalysis7589
@ecanalysis7589 6 месяцев назад
Upload more videos sir🙏🙏
@GreatTaiwan
@GreatTaiwan 2 дня назад
للي يشوفو فيديو ما راح انصح بطريقة دي المسألة هي انو بكون عندك 2 branches واحد لكل مرة بتعمل اصدار (كل ربع سنة مثلا او كل ٦ شهور) Prod و ثاني بكون فيه كل شغل اي تو ديت main و منه حا تعمل برانشات إضافية عشان تحل اي مشكلة مثل أضاف خاصية ما ممكن كل مرة تعمل شي تطلع حاوية جديدة الأفضل من دة انو تعملها بستخدام Tags تقدر تسوي Push git tag و تخلي ال Pipeline (workflow) بتاعك كل مرة يشوف لو ال Commit فيها Tag معينة يستخدم اسمها كإسم حاوية جديدة وقتها تتحكم في بتين تطلع حاوية
Далее
SPONGEBOB POWER-UPS IN BRAWL STARS!!!
08:35
Просмотров 17 млн
Deploy to AWS with Terraform within a GitHub Action
18:05
How to deploy a Node Express API to AWS EC2 instance
18:17