This is one of those videos you skip when you're a beginner, because it seems so daunting, but in the end it's that video that makes all the other random bits of info you found click into place, finally making it all understandable.
Thanks a lot for making this video. Great explanation. I actually saw around 10+ videos on TH-cam didn't understand Docker so clearly as you did in this video. 👍👍
Thanks man glad u liked the video. I actually made a longer version of the course where I go over deployment and a few other things. Check it out if u got time th-cam.com/video/jotpVtFwYBk/w-d-xo.html
Absolutely superb, much better than some other paid resources I used. This is perfect for beginners who have a concept of what an image or container is and are looking to dockerise some projects or create from scratch. The best explanation of Dockerfile and compose that I have seen, with all the supplemental information you need to develop you understanding as opposed to regurgitating steps in a process.
Really good job man!!! In oposition to other contents creators You really showed many important aspects . Truly appreciate, very useful and detailed. Thank You!!!
This is really clean, clear and usful tutorial and contain lots of points you need to take care of them when dockerizeing node project. Really appreciate to watch this course. Thanks dude :)
Thank you so much, time well spent on watching and learning :) Big thanks for explaining all micro knowledge you have for new starters like me. Sending big hugs from Turkey. I lunched my app on aws / ubuntu machine with all manual work. Its time time do it with docker container. Hope you keep doing what you do. Thanks alot again.
at 52:16 when you print the list of file in the running container you can see the Dockerfile exists inside the container although we have explicitly included it in the dockerignore file.Could you please explain why that is happening?
Thanks you for clear explanation, can provide a video on ci,cd and git hub integration with deployments, it would be more helpful to a lot of peoples thank you, sir.
Thanks for the video. I like the way you explain things. Only issue I'm having is that for some reason my .dockerignore file is not working and all the files are copied. Any ideas? Thanks.
Thanks for the great video! Curious - would it be possible to sidestep running the bash command (for the multi-environment support) in the Dockerfile and use Docker's multi-stage builds instead?
Here you go man. Keep in midn i made a follow up video to this course that includes all the content from this video plus another 3hrs of content so the github repo has the final config for that video. github.com/Sanjeev-Thiyagarajan/node-docker
This is one of those videos you skip when you're a beginner, because it seems so daunting, but in the end it's that video that makes all the other random bits of info you found click into place, finally making it all understandable.
You said what i just felt. 🤣🤣
I am not going to skip 😉
thanks for the heads-up
I'm 45mins in to the video, and so far this is unbelievably good, thank you so much!
I learnt a lot about docker in this 100 minute video. Recommended for anyone beginning with Docker.
Finally, someone who can explain docker to a novice. Thanks you just gained a subscriber
After checking many videos in youtube. No one explain som much of depth. Wonderfull videos
Thanks
Best video Ever for me after watching 20 videos and wast of 2 days time ... thank you
Nobody dares to dislike this video. As usual, Sanjeev. Great content !!
Absolute Gem . Every concept explained with a perfect example . Wish I had came across this earlier . Kudos
This is, and I can't express highly enough, exactly what I was looking for! Perfect tutorial, clean, clear, all the information you need. Thanks dude
Thanks a lot for making this video. Great explanation. I actually saw around 10+ videos on TH-cam didn't understand Docker so clearly as you did in this video. 👍👍
Thanks man glad u liked the video. I actually made a longer version of the course where I go over deployment and a few other things. Check it out if u got time
th-cam.com/video/jotpVtFwYBk/w-d-xo.html
@@SanjeevThiyagarajan Yea sure. Thanks for sharing
Hands down the best docker tutorial on the Internet
Absolutely superb, much better than some other paid resources I used. This is perfect for beginners who have a concept of what an image or container is and are looking to dockerise some projects or create from scratch.
The best explanation of Dockerfile and compose that I have seen, with all the supplemental information you need to develop you understanding as opposed to regurgitating steps in a process.
Excellent! You cover a lot of ground with crisp, no cruft examples that build one upon the next. Among the best tuts I've ever seen. Thank you!
Best video on docker file and compose file configuration, really appreciable.
Thanks!
Thanks for the video! Super clear and well explained!
This is just awesome. Best practical video on docker
Really good job man!!! In oposition to other contents creators You really showed many important aspects . Truly appreciate, very useful and detailed. Thank You!!!
This is really clean, clear and usful tutorial and contain lots of points you need to take care of them when dockerizeing node project. Really appreciate to watch this course. Thanks dude :)
Thank you so much, time well spent on watching and learning :) Big thanks for explaining all micro knowledge you have for new starters like me. Sending big hugs from Turkey. I lunched my app on aws / ubuntu machine with all manual work. Its time time do it with docker container. Hope you keep doing what you do. Thanks alot again.
So much valuable content. You're GOD. What a great teaching style.
Thanks a lot for the thoughtful explanation, you're an amazing teacher!
Awesome video, clearly explained everything!!!
Excellent. Very thorough.
Congrats! This is perfect! Thanks!
Amazing tutorial👏👏👏👏
Thanks for this awesome video, just what I needed
Excellent course
Excelente video!
Excellent
at 52:16 when you print the list of file in the running container you can see the Dockerfile exists inside the container although we have explicitly included it in the dockerignore file.Could you please explain why that is happening?
i think it's because of the volume!
Great tutorial! Really appreciate the time you put into this! :)
in environment variables section
why you enter the port 4000 while run the container but in Dockerfile you mention 3000?
Awesome video 🎉
It would be interesting to hear from you about Redis, in particular its integration with JS. Thanks for your work
I'm already working on a full stack tutorial that will incorparate redis :)
@@SanjeevThiyagarajan Awesome bro! Your Tutorials and the Voice is so clear. Loving it! Will it be free or paid ? Thanks in advance!
it'll be free
@@SanjeevThiyagarajan And something with sequelize is not planned? :)
@@The122PelZZzzz not a huge fan of sequalize. I'll probably do a video knex.js
Very helpful tutorial. Thanks. :)
you saved my life
Help me use this for typescript, my types is not being registered because node_modules is empty on the host
Hi can you please help.
Why I couldn't create node images?
It's always say none images only instead of node.
Can you say the solution for it? Please
Your Genius, Thanks, man!, please do a video on CI/CD Pipeline with Github Actions
Fantastic stuff
Thanks you for clear explanation, can provide a video on ci,cd and git hub integration with deployments, it would be more helpful to a lot of peoples thank you, sir.
Thanks for the video. I like the way you explain things. Only issue I'm having is that for some reason my .dockerignore file is not working and all the files are copied. Any ideas? Thanks.
Docker ignore is just for building images. If u have a bind mount then it will sync all files
please create a tutorial for dockerizing mongodb with this express app
awesome, can't find such a good tutorial on russian
I have everything set up same as you, but nodemon is not restarting inside container when files change
oops, turns out not everything, forgot to add "-L" to nodemon command
Thanks for the great video! Curious - would it be possible to sidestep running the bash command (for the multi-environment support) in the Dockerfile and use Docker's multi-stage builds instead?
You 100% can do it with multi-stage builds. Multiple ways to accomplish things
@@SanjeevThiyagarajan yeah, no question about that! I was just wondering if you maybe have any examples / patterns of such an approach? Thanks!
great course .thanks
Thank you!!
please make an video of cicd pipline on node js
My container stops or restart when run to create. Please give source code.
it's answer beginners what thing doing. great....
wowow thank you so much
Thank you for a great tutorial.
This has been very helpful to me.
It would be great if you could put this code on a github repo. It would help a lot.
Here you go man. Keep in midn i made a follow up video to this course that includes all the content from this video plus another 3hrs of content so the github repo has the final config for that video.
github.com/Sanjeev-Thiyagarajan/node-docker
@@SanjeevThiyagarajan Ahh got it. Thanks :)
thank you.
Github Actions pretty good idea!!!!
Please make node.js crash course tutorials
please make a ci cd pipeline tutorial
source code?
👍
❤❤✌✌
This