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

  Рет қаралды 18,736

Shubham Verma

Shubham Verma

Жыл бұрын

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

Пікірлер: 56
@shubhamverma1407
@shubhamverma1407 8 ай бұрын
You can checkout the code here: github.com/varsubham/cicd-pipeline
@kitkarson4226
@kitkarson4226 6 күн бұрын
Straight to the point. no time waste. 👍
@oscarenriqqdev6931
@oscarenriqqdev6931 Ай бұрын
THANK YOU!! A lot of information in 12 minutes.
@adventurer2395
@adventurer2395 7 ай бұрын
This video needs to be watched at 0.25
@Cloud.Developer
@Cloud.Developer 4 ай бұрын
That's what I thought. Too fast!
@naveedalirehmani4135
@naveedalirehmani4135 8 ай бұрын
All this information in just 12 minutes! this video was all I needed. it was a hidden gem. thank you very much.
@gaychin8654
@gaychin8654 5 ай бұрын
Very helpful!!! Straight and concise. Thanks!
@MohasinKR-rs4kc
@MohasinKR-rs4kc 2 ай бұрын
Your voice such calmness!
@user-ko5js1ho8y
@user-ko5js1ho8y 7 ай бұрын
Great tutorial so informative and well explained in few minutes. Awesome.
@kirteekumari3459
@kirteekumari3459 10 ай бұрын
Hey, thanks a lot for this. I did struggle at some points but your video was helpful.
@random-user-1337
@random-user-1337 7 ай бұрын
To the point video. Awesome. Thanks a lot.
@user-xi2nv2td5h
@user-xi2nv2td5h 2 ай бұрын
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
@satish-pokala
@satish-pokala 6 ай бұрын
Thank you 👍🏻. Helped a lot.
@warrenwei6094
@warrenwei6094 6 ай бұрын
It helps a lot, thank you!
@samirp.3181
@samirp.3181 9 ай бұрын
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
@hao57
@hao57 4 ай бұрын
Great tutorial, thanks man! 😎
@AmarKrGupta-ys1gu
@AmarKrGupta-ys1gu Жыл бұрын
Thanks bro for this video we need more video like this
@MrUmban
@MrUmban 9 ай бұрын
Thank you for your clear explanation
@PanosCodeOs
@PanosCodeOs Жыл бұрын
Thank you bro this video saved me!
@stefanambrose5616
@stefanambrose5616 12 күн бұрын
thank you you helped a lot
@codecoder005
@codecoder005 9 ай бұрын
good work man. it really helped me
@gerardosalasm6213
@gerardosalasm6213 11 ай бұрын
thank you, it helps me a lot 😄
@tristheflash6928
@tristheflash6928 Ай бұрын
really u are senior even super senior tks my fr very much
@neenav1999
@neenav1999 2 ай бұрын
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 2 ай бұрын
thank you, sure will keep this in mind
@flaretm1974
@flaretm1974 9 ай бұрын
Great tutorial. Very clear and straight forward. I fully understand now how this works. Will apply to my project soon. Thanks.
@cuizeyue10
@cuizeyue10 7 ай бұрын
love it
@itsmehemant7
@itsmehemant7 6 ай бұрын
wah verma ji
@krishmarsonia2059
@krishmarsonia2059 8 күн бұрын
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
@vijaikannan3143
@vijaikannan3143 2 ай бұрын
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.
@sahlcyprus939
@sahlcyprus939 4 ай бұрын
does the container ip changes whenever the new container builds ?
@HasanJaweesh-lf5fn
@HasanJaweesh-lf5fn Ай бұрын
I thought it's 12 min long, turns out it's 12 hours long
@debillion
@debillion 16 күн бұрын
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?
@CrashTheGooner
@CrashTheGooner 10 ай бұрын
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 8 ай бұрын
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.
@abubakersaddique851
@abubakersaddique851 Жыл бұрын
plz add your dummy nodejs code and other links from where you copy code and thanks bro for this video
@muhammadfaheem4024
@muhammadfaheem4024 8 ай бұрын
what was the fix image name commit that you did? Initially it was failed but you added something what was that change?
@shubhamverma1407
@shubhamverma1407 8 ай бұрын
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 .
@KapilKumar-ps6gu
@KapilKumar-ps6gu 11 ай бұрын
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 8 ай бұрын
Thanks, sure will keep this in mind
@debillion
@debillion 17 күн бұрын
cant we also use self-hosted for the CI part?
@shubhamverma1407
@shubhamverma1407 17 күн бұрын
yes we can
@debillion
@debillion 17 күн бұрын
@@shubhamverma1407 i have been having issues. the ec2 machine keep going offline when running the CI
@shubhamverma1407
@shubhamverma1407 17 күн бұрын
@@debillion make sure you are running it as a service, so even if you logout of the machine, github runner would still be running
@user-ti8sz5ps7r
@user-ti8sz5ps7r 10 ай бұрын
give one example clearly and slowly
@VarunSharma-xd8xd
@VarunSharma-xd8xd 2 ай бұрын
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
@VarunSharma-xd8xd
@VarunSharma-xd8xd 2 ай бұрын
took me more than 2 hr to complete it
@codewithzardam8904
@codewithzardam8904 2 ай бұрын
how to maintain the runner up all the time ...
@shubhamverma1407
@shubhamverma1407 2 ай бұрын
you can run it as a service
@piegzini1269
@piegzini1269 5 ай бұрын
Jesteś prze dym
@jilesingh1124
@jilesingh1124 3 ай бұрын
you type very fast
@ecanalysis7589
@ecanalysis7589 4 ай бұрын
Upload more videos sir🙏🙏
CI/CD  using Docker + Github + AWS ECS
20:26
Computing Power
Рет қаралды 6 М.
Мы никогда не были так напуганы!
00:15
Аришнев
Рет қаралды 4,5 МЛН
КАРМАНЧИК 2 СЕЗОН 7 СЕРИЯ ФИНАЛ
21:37
Inter Production
Рет қаралды 437 М.
Became invisible for one day!  #funny #wednesday #memes
00:25
Watch Me
Рет қаралды 17 МЛН
How to design a modern CI/CD Pipeline
9:59
DevOps Journey
Рет қаралды 78 М.
Deploy Spring Boot application to AWS EC2 using GitHub Actions
25:33
Integration Ninjas
Рет қаралды 10 М.
Deploy to AWS with Terraform within a GitHub Action
18:05
CloudScalr
Рет қаралды 37 М.
How To Use GitHub Actions • Automate Your AWS Deployments
19:46
GitHub Actions Selfhosted Runners | easy devops tutorial ci/cd
8:30
Tech with Marco
Рет қаралды 1,5 М.
Мы никогда не были так напуганы!
00:15
Аришнев
Рет қаралды 4,5 МЛН