As always awesome vid, this should be from now on default beginner docker intro vid on RUclips. Every other docker intro vid are not as hands on beginners as yours.
I agree. I have begun the process to actually work on my projects, and have begun to realize that docker and virtual machine do not mean the same thing. This clears up a lot, and I will use it, probably over vms in most cases.
What a great teaching style. He speaks quickly and gets to the point. He creates diagrams to help follow along and breaks things down in a common-sense way. I wish more tutorials were like this.
Dude... So. I am an IT professional for ove 15 years. Networking, Desktop support, Sys Admin you name it. I am making the switch to become a hardcore DevOps Engineer / SRE, and decided to just spend a couple days reviewing basics of stuff I have not had to actually mess with at work. Your Vid and teaching style are RIGHT up my alley... simple... with illustrations and you avoid too much talking! FANTASTIC! Thank you. Instant Like and Sub !
This was my third "Intro to docker" video, and by far the best. While others went into more detail on the docker commands / tags / flags, you explained the use case and benefits that docker provides. Thank you!
1970, nerd gets beat up daily, hates life. 2024, nerd beats you up, installs rat, leaks info, shuts down your WiFi, places illegal content on devices and reports you anonymously.
Great intro video! Beware: Docker likes to make changes to your networking. If you already have a bridge setup, docker can break it. It can be dealt with, but I find Docker is best deployed on a box or VM where it is the only thing on it.
@@typecraft_dev Please consider keeping it as non-conventional in terms of teaching as this video is. Actually, I love how you've responded to all questions that might come into a beginner's mind when learning about Docker for the first time, and the most common issues they might encounter. In your series too, please keep it as practical and useful as possible. Love 💖.
Thank you for this video! I started working at a company that use Docker for its services. Your video is clear and to the point with no unnecessary information 🙂
Very nice intro, the best I ever watch, simple and very direct. I have watched many docker tutorials this style of teaching jell very well for me. Great work.
The explanation of the docker workflow is great, one thing about the difference between vms and containers, the main difference is hypervisors make new kernals, containers use the host systems kernal.
Yeah, I only just started by watching this and I'm super confused about what happens if the FROM line is a totally different OS than the host. I'm guessing it just fails to build the image, or fails on run with an incompatible OS? Or does it actually create a whole separate OS install to run it in somehow? I guess I should just keep watching or test it myself to find out!
@@BrianEmmons FROM line for the base image only means what libraries and utilties to include from that base image. It totally ignores the kernel and still uses the host kernel.
Great video! I had to blindly use Docker for work a couple of times, and all I did was follow some tutorials, but I never really understood what I was doing. Your way of explaining things is much more approachable than any other video I've seen about this topic. I will definitely come back to this soon. Thanks!
definitely the greatest start point. totally explained to me relationship between dockerfile, image, container. From very high level you have explained, very clear and easy to understand. I highly recommend Thank you again
Thanks this video came up at the right time for me. I pretty much knew how docker worked but I haven’t had time to investigate docker files and how to make them. I just took over a pretty massive project that makes use of docker and I’ve been putting it off a bit for a few weeks. Now I know what I need to do.
I watched many videos about docker and containers, this one is hands down the best so far, i could understand the whole concept because you explain detail by detail, thanks a lot man! =)
This tutorial was really good!!! Would be really interested in a Docker Compose vs Docker Swarm breakdown, still sometimes confuses me!! I already knew your channel and am really happy to see this content here! Slay!!
I really enjoyed your video on demystifying docker! Your explanations were clear, and the examples you used made it easy to understand the concepts. The step-by-step approach was particularly helpful for me. Awesome video! Keep up the excellent work! Cheers 🍻
I heard lots of people talk about dcker and that I needed to learn about it and now I have some idea of what it is. I would love to watch more videos about docker.
Quando uma pessoa tem a grandeza de admitir que não entendia muito bem determinado assunto, mas que procurou aprender, então vale a pena conferir o que essa pessoa tem a dizer. 👏
More docker please, docker-compose, networking , port mapping with docker reverse proxies with docker and all the shebang. As someone who learns while doing it would be highly appreciated
Ahhhh... THIS is the light bulb I needed. It was your deconstruction of the docker command that did it for me. (image name:tag / instructions to install _____ on image... ) For some reason, that glaringly obvious syntax evaded me, because I never bothered to bother.. if that makes sense? Anyway, that made a LOT of other areas fall into place, and now it all kinda makes a lot of sense. I think. At least now, I can start throwing switches in the lab and move forward from where I've been stagnant. Thanks!!!
Awesome work. I don't know a thing about software but I was able to follow you. Will have to view it a few more times to really understand, but thanks!
Awesome video! This was enjoyable, informative, and super easy to follow along. I would 100% watch more content aimed at demystifying other technical topics (AWS services, intermediate Git concepts, etc.) Thanks for creating this!
Maybe a good next video on this topic might be about setting up a local container image registry. For those who work with a lot of in-house developed software, I think a lot of the power of Docker for deployment may be in pulling locally developed images with all libraries already built, so target applications and services can be installed over a set of common custom base images. Setting up a self-hosted repository seems like the right way to do this for managing proprietary in-house software, and it might be a reasonable not-too-complex exercise to do in a video.
Under what circumstance should one use a virtual environment (conda) vs containers (docker)? I do a lot of computational physics and have zero interest in cloud/software development or app building.
Used containers for years with ESC and k8s. It’s super good if you keep your docker build files simple. Ideally build, test, push and run it in ci. I’ve seen docker files that are massive needlessly without using layers etc. that’s when you get the pain points 😢
I'd love to see a video on Docker Compose. I started using it in a personal fullstack project to control frontend, backend, and DB, and it's great but I sometimes struggle with it.
Be good to get a handle on if we should leverage neovim being in the terminal and directly install neovim inside our dockerfile. Or if we should do some sort of remote execution for running tests etc
everytime i need something lately you have just uploaded something for it lmao. was trying to setup one to build python stuff on mac without renting a mac . being able to use windows wsl2 for arch linux and then docker+linux for mac makes a holy trifecta. and if you run outta ideas, not a lot of well explained python stuff for arch, from which of the 3 options to use to install packages or general life advice on how to setup outside of a conda env. or if you use that at all
This is a great video. I had a class where to pass it we had to make a hospital DB and get stuff and shit. We only learned the SQL parts during class, I struggled so much getting docker to work properly and so I had a bad grade on the project. Ended up failing it but oh well, maybe next year I finally can thanks partially to you
First of all: THANK YOU for this awesome video!! Linux newcomer, here, and tinkering with Docker. I really needed you!! On another note, what app do you use for your graphs? Looks awesomely fluid and flexible.
As always awesome vid, this should be from now on default beginner docker intro vid on RUclips. Every other docker intro vid are not as hands on beginners as yours.
awesome! I'm glad you liked it!
I agree :D
I agree. I have begun the process to actually work on my projects, and have begun to realize that docker and virtual machine do not mean the same thing. This clears up a lot, and I will use it, probably over vms in most cases.
Well said!
Watching this video felt like dad explaining to me how to fix the garage door. Simple, pragmatic, clear and with a mustache.
How do you fix your garage door with a mustache? 〰️
Mustache was intentional
Lol for the mustache, I am a club member as well. Good docker intro for me.
@@tommymurphy459Ask your dad, he knows.
The moustache is important…
What a great teaching style. He speaks quickly and gets to the point. He creates diagrams to help follow along and breaks things down in a common-sense way. I wish more tutorials were like this.
Love the kind words thank you!
Dude... So. I am an IT professional for ove 15 years. Networking, Desktop support, Sys Admin you name it. I am making the switch to become a hardcore DevOps Engineer / SRE, and decided to just spend a couple days reviewing basics of stuff I have not had to actually mess with at work.
Your Vid and teaching style are RIGHT up my alley... simple... with illustrations and you avoid too much talking! FANTASTIC! Thank you. Instant Like and Sub !
This was my third "Intro to docker" video, and by far the best. While others went into more detail on the docker commands / tags / flags, you explained the use case and benefits that docker provides.
Thank you!
Love hearing this. Thank you!
Thanks, Nerd.
🤓
1970, nerd gets beat up daily, hates life.
2024, nerd beats you up, installs rat, leaks info, shuts down your WiFi, places illegal content on devices and reports you anonymously.
The highest praise!
This set my heart aflutter...and he wasn't even talking about me...
😂
This is my first time coming across your channel, and I must say you explained the concept of Docker in great detail. Truly worthy content, Thanks!
Thanks, I’m really glad you liked it!
Hello from France, I would like to say thank you for all your vids. I find them very didactic and understandable.
I like the zero assumption of any background knowledge. Really good, well produced video!
Glad you enjoyed it! thanks!
Great intro video! Beware: Docker likes to make changes to your networking. If you already have a bridge setup, docker can break it. It can be dealt with, but I find Docker is best deployed on a box or VM where it is the only thing on it.
Good point but probably most people don't have bridges configured on their workstation
man a playlist on docker like your neovim one would be great
I think we're well on our way to one!
@@typecraft_dev Please consider keeping it as non-conventional in terms of teaching as this video is. Actually, I love how you've responded to all questions that might come into a beginner's mind when learning about Docker for the first time, and the most common issues they might encounter. In your series too, please keep it as practical and useful as possible. Love 💖.
Unironically, this 20 minutes video explained this way better than what my professor has tried to present to us in 4 hours. Cheers !
Thank you for this video!
I started working at a company that use Docker for its services. Your video is clear and to the point with no unnecessary information 🙂
You employ a style of teaching and explaining that I find preferable and elusive to many content creators. Well done.
You're a great teacher, this is the best video for learning docker for the first time.
I've been using Docker for years as an enthusiast - I have never completely understood it until I watched this.
Wow. I've seen many videos on docker and I never understood it. This was actually amazing and I've learned tons. Thank you
Very nice intro, the best I ever watch, simple and very direct. I have watched many docker tutorials this style of teaching jell very well for me. Great work.
Thank you! Glad you liked it!
This is by far the most beginner friendly docker video ever. Very informative.
Thanks, nerd!
You probably didn’t mean that!!
The explanation of the docker workflow is great, one thing about the difference between vms and containers, the main difference is hypervisors make new kernals, containers use the host systems kernal.
Yeah, I only just started by watching this and I'm super confused about what happens if the FROM line is a totally different OS than the host. I'm guessing it just fails to build the image, or fails on run with an incompatible OS? Or does it actually create a whole separate OS install to run it in somehow? I guess I should just keep watching or test it myself to find out!
@@BrianEmmons FROM line for the base image only means what libraries and utilties to include from that base image. It totally ignores the kernel and still uses the host kernel.
Amazing video man. Love your way of explaining the utility and purpose behind the technology instead of delving right into the implementation. Subbed
paused and rewinded multiple times. so much gold in this video. thank you
Great video! I had to blindly use Docker for work a couple of times, and all I did was follow some tutorials, but I never really understood what I was doing. Your way of explaining things is much more approachable than any other video I've seen about this topic. I will definitely come back to this soon. Thanks!
First video of yours that I watched. Your way of explaining things and pacing is excellent. Subscribed, thank you!
I have watched a lot of videos explaining docker. This by far is the best of them.
Be sure to check out Docker Compose in the 2nd video of the series! ruclips.net/video/HGKfE-cn9y4/видео.htmlsi=M-Q0i20Yr38NdYbr
definitely the greatest start point. totally explained to me relationship between dockerfile, image, container.
From very high level you have explained, very clear and easy to understand.
I highly recommend
Thank you again
This was excellent, very clear and with helpful visuals and examples. Well done, and thank you!
Just amazing 😍. It's really a gentle intro to Docker.
I love the vibe from the intro. Great content!
Thanks this video came up at the right time for me. I pretty much knew how docker worked but I haven’t had time to investigate docker files and how to make them. I just took over a pretty massive project that makes use of docker and I’ve been putting it off a bit for a few weeks. Now I know what I need to do.
I watched many videos about docker and containers, this one is hands down the best so far, i could understand the whole concept because you explain detail by detail, thanks a lot man! =)
This tutorial was really good!!!
Would be really interested in a Docker Compose vs Docker Swarm breakdown, still sometimes confuses me!!
I already knew your channel and am really happy to see this content here! Slay!!
Docker compose is docker file for multiple containers instead of one. Docker swarm is for host clustering for containers across physical devices.
I really enjoyed your video on demystifying docker! Your explanations were clear, and the examples you used made it easy to understand the concepts. The step-by-step approach was particularly helpful for me. Awesome video! Keep up the excellent work! Cheers 🍻
Thanks for the great video! Just getting into Docker based embedded dev environments and this has been super helpful.
Thanks for being direct, not having crazy loud music in the background and not yelling at the camera.
Best tutorial so far!
Thank you - part 2 coming very soon!
So much this - RUclips is full of video tutes where the presenter figures they can make it exciting by whipping themselves into a frenzy.
This is the best introduction to docker I've seen. What a struggle to get the concept the first time on your own. Great work
I have seen a lot of videos but yours hands down was the best one that I have seen. Keep up the amazing work!
I heard lots of people talk about dcker and that I needed to learn about it and now I have some idea of what it is. I would love to watch more videos about docker.
Such a nicely composed video. You just ignited the desire in me to seriously dockerize! :'D
YAAAA let’s go!
Quando uma pessoa tem a grandeza de admitir que não entendia muito bem determinado assunto, mas que procurou aprender, então vale a pena conferir o que essa pessoa tem a dizer. 👏
easily the best video on docker ive ever seen
easily the best comment I've ever seen, thanks!
I really like your explanation, got everything from the first time, clear and simple, thanks🧡
This is so much better than a college professor. Thanks for your hard work!
Thank you! Glad you liked the video
More docker please, docker-compose, networking , port mapping with docker reverse proxies with docker and all the shebang. As someone who learns while doing it would be highly appreciated
Oh it’s coming.
This is the first video I've seen on this channel and man, it's great. I subscribed. And btw I love the sound of your keyboard.
It's so good. HHKB Type S - check it out amzn.to/3C8iLwP
Ahhhh... THIS is the light bulb I needed. It was your deconstruction of the docker command that did it for me. (image name:tag / instructions to install _____ on image... ) For some reason, that glaringly obvious syntax evaded me, because I never bothered to bother.. if that makes sense? Anyway, that made a LOT of other areas fall into place, and now it all kinda makes a lot of sense. I think. At least now, I can start throwing switches in the lab and move forward from where I've been stagnant. Thanks!!!
Awesome work. I don't know a thing about software but I was able to follow you. Will have to view it a few more times to really understand, but thanks!
Awesome video! This was enjoyable, informative, and super easy to follow along. I would 100% watch more content aimed at demystifying other technical topics (AWS services, intermediate Git concepts, etc.)
Thanks for creating this!
This ep was goated - great work!!
love it !
you really summarized Docker in 18 min . Thanks bro
Best instructor ever, seriously I'm in love with your content.💯
That was very helpful, informative and straight to the point. Loved the video. Thank you.
didn’t even know about docker, but after this video, I’m waiting for ur next docker video. GREAT explanation❤
Thank you I’m happy you liked it!
As of today, your video helped and now I understand Docker. Cheers man... (You got the title right!)
Maybe a good next video on this topic might be about setting up a local container image registry. For those who work with a lot of in-house developed software, I think a lot of the power of Docker for deployment may be in pulling locally developed images with all libraries already built, so target applications and services can be installed over a set of common custom base images. Setting up a self-hosted repository seems like the right way to do this for managing proprietary in-house software, and it might be a reasonable not-too-complex exercise to do in a video.
This is an awesome video and very good intro on Docker video.
this was great, thanks for the valuable intro!
Great video! I wish I had that intro to docker too when I was learning it, very instructive, thanks for sharing!
Glad you liked it!
finally good docker intro video. part 2 please.
Coming very soon!
@@typecraft_dev looking forward to it!
I just watched the nvim video and its stunning how you delivered the information
Bravo
Came here after watching the second video. Man! It helped me lot. Big thanks! 👍
Awesome docker intro! Specifically the explanation of virtualization vs containerization!
Nice tutorial, is there a full version of the intro music at 00:43? What a banger.
Under what circumstance should one use a virtual environment (conda) vs containers (docker)? I do a lot of computational physics and have zero interest in cloud/software development or app building.
Best explaination I've ever seen, and it's the first one that made any sense.
Fantastic first episode in this Docker series
Episode 2 - Docker Compose just dropped today! ruclips.net/video/HGKfE-cn9y4/видео.htmlsi=Q20qvT_3n4JENA9d
Great video and presentation style, but subbed for the Draplin book in the background.
Used containers for years with ESC and k8s. It’s super good if you keep your docker build files simple. Ideally build, test, push and run it in ci.
I’ve seen docker files that are massive needlessly without using layers etc. that’s when you get the pain points 😢
Finally I understand Docker. thank you so much!!!
Happy to hear it!
amazing tutorial, very informative and straight to the point
Best docker tutorial I saw so far
The intro…. I smashed the subscribe button
Amazing video, thank you. I've never seen the basics explained so well before. Thank you!
I'd love to see a video on Docker Compose. I started using it in a personal fullstack project to control frontend, backend, and DB, and it's great but I sometimes struggle with it.
Unreal. Teach me everything you know about life just like that.
You earned a sub with this tutorial, make a playlist on this levelling up
Would love more content in this style! Hope you make the video on port mapping!
very helpful, thanks! I'd be interested in learning about port mapping in future videos.
Amazing vid! I’m assuming similar concepts are used within AWS because so much just clicked!
Looking forward to more videos on this, thanks so much!
Be sure to subscribe - more coming soon on Docker!
I like the video format, awesome. Subcribed.
Thanks!
Thank you for this very useful video!
I have understood (finally!) Docker!
Fantastic explanation - thank you!
Be good to get a handle on if we should leverage neovim being in the terminal and directly install neovim inside our dockerfile. Or if we should do some sort of remote execution for running tests etc
Great overview, thank you. Pragmatic and easy to understand.
Thank you for making this tutorial! Excellent flow and very helpful! subscribed!!!
Amazing intro video! Thank you.
Please make a part 2 with all the topics you mentioned!
It’s up now!
You are an amazing teacher. ❤❤❤. You cleared up all problems
I really like your teaching style. Great presentation.
Episode 2 - check it out! ruclips.net/video/HGKfE-cn9y4/видео.htmlsi=Q20qvT_3n4JENA9d
Great intro - and yes to Docker Compose :)
Coming soon!
Thank you this video was very helpful for someone who knows nothing about docker
Great editing and flow. I’m going to try and mimic it, it’s that good ha
Thanks!
everytime i need something lately you have just uploaded something for it lmao. was trying to setup one to build python stuff on mac without renting a mac . being able to use windows wsl2 for arch linux and then docker+linux for mac makes a holy trifecta.
and if you run outta ideas, not a lot of well explained python stuff for arch, from which of the 3 options to use to install packages or general life advice on how to setup outside of a conda env. or if you use that at all
Great video! Suggestion for next docker video: multi-stage docker builds, scenario: build, publish, and test your code with docker
Lets go! This is awesome my friend. Keep going (:
Thanks!!
This is a great video. I had a class where to pass it we had to make a hospital DB and get stuff and shit. We only learned the SQL parts during class, I struggled so much getting docker to work properly and so I had a bad grade on the project. Ended up failing it but oh well, maybe next year I finally can thanks partially to you
Thanks .... I was wondering when will you come up with something like this......need more of these technologies
Glad I stayed to the end
Spectacular explanation!
First of all: THANK YOU for this awesome video!!
Linux newcomer, here, and tinkering with Docker. I really needed you!!
On another note, what app do you use for your graphs?
Looks awesomely fluid and flexible.
glad you liked the video! I'm using eraser.io for all the drawing stuff