Download Docker Desktop: dockr.ly/3QpUF56 Docker Scout: dockr.ly/4b21qlO Get started with Docker: dockr.ly/44siM8X 🚀 In this video, I dive deep into my Docker addiction and reveal 18 unconventional and powerful ways I use Docker every day. From running full GUI browsers in containers to setting up isolated hacking labs, these tips will transform how you think about Docker. Let's get started! 🔥🔥Join the NetworkChuck Academy!: ntck.co/NCAcademy **Sponsored by Docker
No links. Folding at home f.ex. Are you guaranteeing this is safe, because on THEIR website there is no mention of any docker container, so anything could be changed in that software without us knowing. Do you guarantee the code is safe here? Edit. Nvm, I found it, they link to a docker container if you click "v7 Client page" and then at the bottom there is a link to foldingathome/fah-gpu.
Chuck! Would love to see if you have a dash board set up to monitor all your containers ( home page etc.. ) If so do a video ! I will hack youtube on that one as well!
When I first started watching you, I’d been out of IT for about 10 years. Within the last 3 years, I’ve gone from knowing only VMware from 15 years ago, to hosting my own proxmox VE, running docker, Nextcloud, pihole-unbound recursive DNS and a web server. I did this all while recovering from PTSD, as an outlet. I am now on my way to finishing blue team fundamentals in order to get into cybersecurity. Thank you Chuck… you’ve pulled me from my darkest place to feeling like the old me. ❤
@@AnderJuarez-hs4og It just keeps getting more fun too. I'm starting to come across videos of some of the creators that I follow, trying things that I've tried, or am currently trying... That enforces my feelings of progress. Hell, just a couple of weekls ago, I was randomly thinking of things that would make proxmox a little cooler. A few of them were just part of the recent release. It feels good to feel good. Thank you, and all of you that have stopped by to "hoo rah" me. I appreciate all of you. Live long and prosper.
I tried so hard, to make podman work for me. Couldn't really just switch one for the other as I was sort of envisioning. Are you able to run every image with it, even those using root internally? Do you have a single standard user that you run pods with? How do you manage access to shared volumes for other users, like your own?
--userns=keepid is the one podman feature I like the best. It makes bind mounts a lot more useful. Podman containers can be made to feel just like another application on the host machine The main downside of it is that something like k3s is just... better than docker or podman if you actually want to host complex container setups imo. And Docker is better than podman at advanced development features. Podman is in a weird sport where it beats all alternatives at hosting one or two containers on a prod machine, but apart from that it isn't the best in the development or the prod deployment niche because it is squeezed between alternatives
I already have a smart coffee maker. I'm smart, and I make coffee. I just use the same Planetary Design french press I've had for 10 years. The aluminum walled ones are practically indestructable, just don't put them in the dishwasher.
Nooooo I miss the old informational Chuck! Who used to just show information about similar services/products instead of now with videos solely focused on reviewing products that he was paid to review (which gives a biased review since he was paid) Now it might still contain information if people used those products but I’d prefer having information on other similar products/services and shown the pros/cons between each
@@reyariass hit the nail right on the head, we want the ol' network chuck back not this phony sellout network chuck (joke, your only slightly phony from the bias because of the paid sponsorship and we all still love you only now with a tinge of disappointment)
@@chadandcalebsadventures4950 No it's pretty much all phony. His earlier videos tried to teach people to genuinely understand the underlying technology and reasoning behind things. The newer videos are actively doing the opposite and fostering a blind cargo-cult use of sponsored products.
Fun fact: you actually don’t need docker for fabric unless you really want the isolation for security. Go compiles to a static binary that doesn’t have any dependencies (unless you specifically link them in). Fabric provides downloads on their releases page, or you could use Docker to build it and copy it out
I ran docker for several years at home, first on a Raspberry Pi, then a laptop acting as a home server, then I went to a desktop as my "server", but changed from Docker to Podman. the differences are not huge, but I wanted to get to more open standards. I created shell scripts to While I'm not building my own containers, I do have 7 containers running, doing various things.
When you were running docker on the start, you were running it directly in your WSL2 instance. When you added docker-desktop to Windows, it setup a new WSL2 instance for docker itself, and injected a docker command into your WSL2 instance that talks to the instance in the new WSL2 instance. If you turn off the WSL2 integration, the original docker installation will be visible again.
I loved the flow of this video. Made me chuckle here and there and picked up a couple good images to try out. I'm half a century old and I had the exact same reaction when docker came into my life !
3:28 the level of isolation provided by a VM compared to docker is not even remotely comparable. Containers should never be used where security is important.
@hvsniddin To oversimplify, VMs have complete low level isolation, typically enforced by the CPU, with their own set of resources. With a container, the isolation is enforced by a software feature called a cgroup namespace. A process in a container is just running on the host, with access to the hosts kernel, just when it tries to e.g. query running processes, it gets returned the list of those running in its own namespace. Practically, this means whenever a new kernel vulnerability is found (not that uncommon) a container can use it to attack the host and potentially break out, whereas VM escapes are much less common, and typically effect virtual peripherals such as virtual USB devices that connect the vm and host, rather than the core virtulisation itself.
Just a tip on minute 13:00: instead of using the absolute path, you can use this instead "$(pwd):/root" and it'll understand that the volumn needs to be mounted on your current directory, maybe rename it to fabric, so "$(pwd):/fabric" or /app, idk
Since AI was mentioned around 11:40 I feel like it should always be noted and educated about limitations and pitfalls of current AI tech. Specifically it's tendency to hallucinate with confidence. So it can totally generate a wrong or insecure config and then proceed to explain to you how it works and why it's all good and secure. But then it will either not work at all or leave some gaping security holes. I am not saying AI should not be used, it's a great tool which I use daily as well, for coding, config, linux commands, search and so on. But it's important to... stay constantly vigilant! :D And always remember not to put 100% trust in AI (LLMs specifically).
personally best example, docker on the media server for the house, with a portainer docker image, and samba on the OS (i havent figured out the newer media servers out there since the old ps3 one i used and there was another one), a simple minecraft forge server (docker) for kids when they visit cause they're 30 now lol, also handbrake (docker) for resizing captures and dvd rip's (cuz im that old) for the media server on whole house.... now i use docker on other things, like octobot, and other Ai projects too, etc. but those are on other systems in the house lol (do not ask what my electric bill is... lmao)
I find it interesting that the first few docker use cases are just so you can run things in a Linux environment. Especially needing VNC to get a GUI. If you are just on Linux in the first place you can directly access your GPU and GUI!
If you're accessing containers on the same network like in your dvwa example, just use the container name instead of the IP. The DNS is setup automatically
Two things: 1. If all you want is a desktop application (GUI or CLI), distrobox is your friend. Oh, wait, you're a windows person. Sorry. Keep doing it the hard way. 2. Uh... Are you running all your containers as root? Ooh! Dangerous. Run them as a normal user with unprivileged access. Oh, wait, you're a windows person. Sorry. Keep running your containers as the super-user.
dude, i love anything long format and your vids are a blast. But whether or not you want to run long vids or just tease us, you do you. i always appreciate quality over quantity and you rock the box. stay awesome!
Cheers m8. 1. We're learning Docker because of You. A comment was made, that we weren't smart enough to understand it. We're out to prove them wrong and it's you who's giving us the motivation to give it a try. 2. YOU FREAKING ROCK ALL the Way, and we Appreciate You. A LOT!! Mad Philadelphia Brotherly Love, by way of The North of England. J aka Brother Soul #labr #loveabrotherradio PS Say hello to your Brother. That video with you two was funny as hell.
I can't figure it out. Why using Obsidian or any other note app in a docker? What's the benefit over running it locally just like any other app? Or libre office? The same case.
Question regarding that internal network. How i usually organize my containers is: - A new network (default, not internal) - All containers are in that network - Only one container exposes port (80 and 443) I thought hat was a safe and recommended approach. So now i'm curious if i instead should be using the internal flag for my network?
Your approach is good if you're always accesing your services through that reverse proxy with published ports, looks quite safe to me. I do a similar thing but even deeper, each of my compose projects gets its own default network for internal traffic, and the one container that's supposed to be accessed is also added to the reverse proxy's network. That way my dbs are only accesible from their specific services, but I feel it's pretty overkill. The internal network flag means the network is not connected to the host's interface like default networks which are bridges. In your case it doesnt make a difference since you are not exposing any ports on your services anyway
I keep being amazed on how you give such great intros into tech! You are my go to resource when I want to dive into a topic! Thank you so much for all the hard work you put into it!
You're missing out on the flavour nuances that come from staggered pouring etc if you just do a single pour. Blooming is highly valued, beyond that gets a bit pedantic
I was trying to do the first web browser project through just googling and various guides and kept failing. Just copied Chuck's screen commands, changed the url to what I wanted, and it worked first try!
I wonder how many containers come prepacked with loggers or backdoors... It's the wild west out there and I've seen quite a few rogue OVF images that were tainted over the years.
Nice video. I am using Docker almost daily for cross-compiling. Most easy way to do it, without installing all of the building tools directly on your machine.
Hi, I feel like this video is the answer to all my questions from the last stream, thank you very much. PD: Thanks for changing the thumbnail, the first one was cursed
i'm up to 22 containers running across 2 physical machines. one of those machines is using docker on 2 different vm's under proxmox. why run 2 dockers under seperate vm's? because i didn't learn about docker networking until later, and it still doesn't make full sense to me - so this was easier.
I've been using podman for years now. Not having a daemon running is great as well. Docker definitely nailed the marketing early on so I understand why people navigate to it first. But podman is definitely a great tool and equally useful for everything you see here. It's largely a drop-in replacement with the same commands.
We moved from docker to podman recently. Podman is not a complete replacement for Docker. One example is if you use something like the Docker plugin for Jenkins, it doesn't work. Another thing is limited feature completeness for compose files. You also often be reading docs geared towards Docker rather than Podman when integrating new items with Podman
I tried to use podman a little while ago, but I gave up after failing to figure out how to get compose to work, but I think it may be time for me revisit this again.
I still don't know how they could keep that many applications open and working on a single machine without being connecting to a mule network. Namastè.
You would be surprised how many of these you can run on a tiny raspberry pi. I have most of my important homelab tools running on one, around 20 containers
Man, thanks for all the information you shared is very helpful and inspiring. I identify myself when you almost jump out the screen because of the white light on the screen then you change it to the dark mode which is way more comfortable anyway keep up the good content
Hypervisors 1 and kernel isolation don't they offer better security actually? Ok at expensees of more resources needed wich is a downside of course btw love docker of course
Download Docker Desktop: dockr.ly/3QpUF56
Docker Scout: dockr.ly/4b21qlO
Get started with Docker: dockr.ly/44siM8X
🚀 In this video, I dive deep into my Docker addiction and reveal 18 unconventional and powerful ways I use Docker every day. From running full GUI browsers in containers to setting up isolated hacking labs, these tips will transform how you think about Docker. Let's get started!
🔥🔥Join the NetworkChuck Academy!: ntck.co/NCAcademy
**Sponsored by Docker
Thank you !
I don't understand why I'd want to run most of these inside docker.
-я!!
#Csharp
It is the Block right da
No links.
Folding at home f.ex. Are you guaranteeing this is safe, because on THEIR website there is no mention of any docker container, so anything could be changed in that software without us knowing. Do you guarantee the code is safe here?
Edit.
Nvm, I found it, they link to a docker container if you click "v7 Client page" and then at the bottom there is a link to foldingathome/fah-gpu.
Chuck! Would love to see if you have a dash board set up to monitor all your containers ( home page etc.. ) If so do a video ! I will hack youtube on that one as well!
0:03 "I'm gonna show you everything I use Docker for."
3:13 "Some of these apps I don't use everyday. Or ever.
I think its time he retires and uses AI to do these videos. AI would have done a better job. What a mess. Kudos anyway.
Also, docker is not fully opensource in the way people think, their paid licensing and "Community Edition" seems shady.
bruh
-
-
-
--
-
-
--
-
--
-
-
-
-
--
-
@@deanmcdonald8787 No God No!
He is a mess .
@@deanmcdonald8787
When I first started watching you, I’d been out of IT for about 10 years. Within the last 3 years, I’ve gone from knowing only VMware from 15 years ago, to hosting my own proxmox VE, running docker, Nextcloud, pihole-unbound recursive DNS and a web server. I did this all while recovering from PTSD, as an outlet.
I am now on my way to finishing blue team fundamentals in order to get into cybersecurity. Thank you Chuck… you’ve pulled me from my darkest place to feeling like the old me. ❤
Hell yeah brother!! 💪💪
YEAH MAN!!!
YEAH!
@@AnderJuarez-hs4og It just keeps getting more fun too. I'm starting to come across videos of some of the creators that I follow, trying things that I've tried, or am currently trying... That enforces my feelings of progress.
Hell, just a couple of weekls ago, I was randomly thinking of things that would make proxmox a little cooler. A few of them were just part of the recent release. It feels good to feel good. Thank you, and all of you that have stopped by to "hoo rah" me. I appreciate all of you. Live long and prosper.
You should do a tutorial on Prometheus and Grafana, I've been running it with Docker for about a month, and its great.
i agree... grafana stack running in docker for monitoring proxmox vms would be cool
this would be so sick!
Yes please
there're many out there already.
Yes! But also how to add snmp to it. I’ve been trying to get it to work and have been running into one thing after another.
I like how podman is rootless, daemonless, compatible with docker, supports the kubernetes pod concept, and is integrated with systemd though
I tried so hard, to make podman work for me. Couldn't really just switch one for the other as I was sort of envisioning. Are you able to run every image with it, even those using root internally? Do you have a single standard user that you run pods with? How do you manage access to shared volumes for other users, like your own?
--userns=keepid is the one podman feature I like the best. It makes bind mounts a lot more useful. Podman containers can be made to feel just like another application on the host machine
The main downside of it is that something like k3s is just... better than docker or podman if you actually want to host complex container setups imo. And Docker is better than podman at advanced development features. Podman is in a weird sport where it beats all alternatives at hosting one or two containers on a prod machine, but apart from that it isn't the best in the development or the prod deployment niche because it is squeezed between alternatives
I already have a smart coffee maker. I'm smart, and I make coffee. I just use the same Planetary Design french press I've had for 10 years. The aluminum walled ones are practically indestructable, just don't put them in the dishwasher.
a "smart" coffee maker sounds like one of the dumbest things ive ever seen
I have a smart coffee maker as well. She sometimes stacks the dishwasher as well.
I think I might duck now.
@@beentheredonethatunfortunately and her name aint gina
@@beentheredonethatunfortunately I always thought that was a fairy doing that 🙂
Docker sponsor is crazy. Keep doing you man
Nooooo I miss the old informational Chuck! Who used to just show information about similar services/products instead of now with videos solely focused on reviewing products that he was paid to review (which gives a biased review since he was paid)
Now it might still contain information if people used those products but I’d prefer having information on other similar products/services and shown the pros/cons between each
@@reyariasswait till you see the Shorts, it's an ad infested mess
@@reyariass hit the nail right on the head, we want the ol' network chuck back not this phony sellout network chuck (joke, your only slightly phony from the bias because of the paid sponsorship and we all still love you only now with a tinge of disappointment)
@@chadandcalebsadventures4950 No it's pretty much all phony. His earlier videos tried to teach people to genuinely understand the underlying technology and reasoning behind things. The newer videos are actively doing the opposite and fostering a blind cargo-cult use of sponsored products.
Can we not have apps for every single electrical appliance we own?
NO!!!!!!!!!!… you'll evn need a wall subscription for the structural walls of your house.
@@inkbunnybunny hope my card doesn’t decline
Yeah, soon we will have smart condoms (great use for IPv6!)...
modern society is falling apart
take your meds
Thanks!
I just want to tell you how much value you bring to my tech career and personal development. God bless you my brother.
Fun fact: you actually don’t need docker for fabric unless you really want the isolation for security. Go compiles to a static binary that doesn’t have any dependencies (unless you specifically link them in). Fabric provides downloads on their releases page, or you could use Docker to build it and copy it out
I ran docker for several years at home, first on a Raspberry Pi, then a laptop acting as a home server, then I went to a desktop as my "server", but changed from Docker to Podman. the differences are not huge, but I wanted to get to more open standards. I created shell scripts to
While I'm not building my own containers, I do have 7 containers running, doing various things.
When you were running docker on the start, you were running it directly in your WSL2 instance. When you added docker-desktop to Windows, it setup a new WSL2 instance for docker itself, and injected a docker command into your WSL2 instance that talks to the instance in the new WSL2 instance.
If you turn off the WSL2 integration, the original docker installation will be visible again.
I loved the flow of this video. Made me chuckle here and there and picked up a couple good images to try out. I'm half a century old and I had the exact same reaction when docker came into my life !
3:28 the level of isolation provided by a VM compared to docker is not even remotely comparable. Containers should never be used where security is important.
Can you explain?
@hvsniddin To oversimplify, VMs have complete low level isolation, typically enforced by the CPU, with their own set of resources. With a container, the isolation is enforced by a software feature called a cgroup namespace. A process in a container is just running on the host, with access to the hosts kernel, just when it tries to e.g. query running processes, it gets returned the list of those running in its own namespace. Practically, this means whenever a new kernel vulnerability is found (not that uncommon) a container can use it to attack the host and potentially break out, whereas VM escapes are much less common, and typically effect virtual peripherals such as virtual USB devices that connect the vm and host, rather than the core virtulisation itself.
👍Thanks!
Just a tip on minute 13:00: instead of using the absolute path, you can use this instead "$(pwd):/root" and it'll understand that the volumn needs to be mounted on your current directory, maybe rename it to fabric, so "$(pwd):/fabric" or /app, idk
I love that you love obsidian! I've never stumbled upon someone else that uses it
AMAZING VIDEO !! Learned more about docker in 20 minutes than the last year !!!
Again a fabulous video!!! Leaning so much in such a short period of time. You are by far the best Tech teacher online...
Since AI was mentioned around 11:40 I feel like it should always be noted and educated about limitations and pitfalls of current AI tech. Specifically it's tendency to hallucinate with confidence. So it can totally generate a wrong or insecure config and then proceed to explain to you how it works and why it's all good and secure. But then it will either not work at all or leave some gaping security holes.
I am not saying AI should not be used, it's a great tool which I use daily as well, for coding, config, linux commands, search and so on. But it's important to... stay constantly vigilant! :D And always remember not to put 100% trust in AI (LLMs specifically).
This man pumps out content the quality of channels sized 20 mil +.
You can also build networking labs with full Cisco/Juniper/Arista/etc OSes using docker and containerlabs
My most random Docker use is to spin up an Icecast stream that just plays Rick Astley - Never Gonna Give You Up on loop 24/7.
personally best example, docker on the media server for the house, with a portainer docker image, and samba on the OS (i havent figured out the newer media servers out there since the old ps3 one i used and there was another one), a simple minecraft forge server (docker) for kids when they visit cause they're 30 now lol, also handbrake (docker) for resizing captures and dvd rip's (cuz im that old) for the media server on whole house.... now i use docker on other things, like octobot, and other Ai projects too, etc. but those are on other systems in the house lol
(do not ask what my electric bill is... lmao)
I find it interesting that the first few docker use cases are just so you can run things in a Linux environment. Especially needing VNC to get a GUI. If you are just on Linux in the first place you can directly access your GPU and GUI!
You don't need the IP Address within the docker networks. Docker-Compose Service name becomes the DNS Address :)
If you're accessing containers on the same network like in your dvwa example, just use the container name instead of the IP. The DNS is setup automatically
That John Hammond joke was incredible, I spat out my coffee!
Two things:
1. If all you want is a desktop application (GUI or CLI), distrobox is your friend. Oh, wait, you're a windows person. Sorry. Keep doing it the hard way.
2. Uh... Are you running all your containers as root? Ooh! Dangerous. Run them as a normal user with unprivileged access. Oh, wait, you're a windows person. Sorry. Keep running your containers as the super-user.
Definitely liked it. Thanks! 😊
dude, i love anything long format and your vids are a blast. But whether or not you want to run long vids or just tease us, you do you. i always appreciate quality over quantity and you rock the box. stay awesome!
Cheers m8. 1. We're learning Docker because of You. A comment was made, that we weren't smart enough to understand it. We're out to prove them wrong and it's you who's giving us the motivation to give it a try. 2. YOU FREAKING ROCK ALL the Way, and we Appreciate You. A LOT!! Mad Philadelphia Brotherly Love, by way of The North of England.
J aka Brother Soul
#labr #loveabrotherradio
PS Say hello to your Brother. That video with you two was funny as hell.
I can't figure it out. Why using Obsidian or any other note app in a docker?
What's the benefit over running it locally just like any other app?
Or libre office? The same case.
Oh, yeah. I use docker-compose all the time. It's a must-have for any microservice architecture! I love it!
Question regarding that internal network.
How i usually organize my containers is:
- A new network (default, not internal)
- All containers are in that network
- Only one container exposes port (80 and 443)
I thought hat was a safe and recommended approach. So now i'm curious if i instead should be using the internal flag for my network?
Your approach is good if you're always accesing your services through that reverse proxy with published ports, looks quite safe to me. I do a similar thing but even deeper, each of my compose projects gets its own default network for internal traffic, and the one container that's supposed to be accessed is also added to the reverse proxy's network. That way my dbs are only accesible from their specific services, but I feel it's pretty overkill.
The internal network flag means the network is not connected to the host's interface like default networks which are bridges. In your case it doesnt make a difference since you are not exposing any ports on your services anyway
@@DavidCastillaGil Thank you for confirming! I wasn't looking forward to restructuring it so I'm happy with the confirmation 😁👍
Love your videos chuck ♥
I keep being amazed on how you give such great intros into tech! You are my go to resource when I want to dive into a topic! Thank you so much for all the hard work you put into it!
Your coffee market is probably the oldest one. All you need to do is poor water over and let it dip. Not sure why you need a timer.
You're missing out on the flavour nuances that come from staggered pouring etc if you just do a single pour. Blooming is highly valued, beyond that gets a bit pedantic
I was trying to do the first web browser project through just googling and various guides and kept failing. Just copied Chuck's screen commands, changed the url to what I wanted, and it worked first try!
for example 1, I forward the browser container through x11 on linux. Can also be done on windows with xming.
I wonder how many containers come prepacked with loggers or backdoors... It's the wild west out there and I've seen quite a few rogue OVF images that were tainted over the years.
I literally busted out laughing at the safe "John Hammond" picture! 10:11
My dude, my chuck, took you 4 minutes to grab a mug?! What mansion do you live in?! Must be a fancy container 😉
for the first point you can just forward your display server and access the native UI
Loved the flow of your vid! Especially like how you have links to other vids for deeper dives. I lost count too!
YES ... this style was MEGA!
Just an fyi regarding docker desktop. It is only free for personal use. It will phone home to see if you are using it in business.
check out rancher desktop instead
Always great content! Thanks Chuck!
I simply love you man km gonna install docker now and have some fun even though i dont really need it
Can you do a video on your setup? Would like to know what you’re using when you write on screen. Thanks
Hi,
I wonder if you could share your terminal config (bash/zsh & DOS/powershell) with THEME.
It looks so good!!
Which font do you use?
Have a look at OhMyZsh (for linux) or OhMyPoSh (for Windows). Not sure if that's what he's using but it achieves the same customizations
Nice video. I am using Docker almost daily for cross-compiling. Most easy way to do it, without installing all of the building tools directly on your machine.
Hi, I feel like this video is the answer to all my questions from the last stream, thank you very much.
PD: Thanks for changing the thumbnail, the first one was cursed
As a security engineer, I haven't cringed that much in a long, long time. You are dangerous.
i'm up to 22 containers running across 2 physical machines. one of those machines is using docker on 2 different vm's under proxmox.
why run 2 dockers under seperate vm's? because i didn't learn about docker networking until later, and it still doesn't make full sense to me - so this was easier.
Dude, there is not enough coffee for me to be able to keep up with you! Get that man a decaf!
I'm use Docker Swarm for production,, and it's absolutely amazing!!
This was awesome, I added a bunch of them to my Heimdall.
Amazing video
Thanks!
I love these kinds of videos!
Awesome Video 🔥🔥
the cold open of "I Think I have a Docker addiction" was gold
Network Chuck not mentioning building networking labs with Containerlab is wild
Creative as always Chuck, Thanks
I got rid of Docker and I'm happier now. NixOS is much more satisfying to work with even though it's not as mature yet.
your energy is amazing
5:30 was stuck on this issue for 2 weeks bro...watched your video and BOOM HEADSHOT solved. Thanks you so much!
One Network Chuck a Day to keep the Burnout away. Thanks Chuck.
00:00 "I think I have a Docker addiction ...", oh no, I don't think it's Docker Chuck's addicted to
Literally every cool tool and cybersecurity platform: *Exists*
People needing education: *Exists*
Chuck: "Check this out..."
I love docker containers and I use unraid for one of my home servers. Unraid natively uses docker containers to isolate things.
😮 that was me in the backseat...I feel so pumped up to container stuff now! Thanks Chuck!
some of the images shown were just amazing!
i never used docker gui but i think i will give it a try
You are excellent in explaining things you are awesome
So much Coffey, it's like this fun video run on x2 speed. You are the dude 😎
This is a phenomenal video.
Are you familiar with podman instead of docker? My supervisor says podman is safer because its rootless
If Podman sponsors him then he will make a video on it.
I've been using podman for years now. Not having a daemon running is great as well. Docker definitely nailed the marketing early on so I understand why people navigate to it first. But podman is definitely a great tool and equally useful for everything you see here. It's largely a drop-in replacement with the same commands.
We moved from docker to podman recently. Podman is not a complete replacement for Docker. One example is if you use something like the Docker plugin for Jenkins, it doesn't work. Another thing is limited feature completeness for compose files. You also often be reading docs geared towards Docker rather than Podman when integrating new items with Podman
You also can run docker rootless by using a rootless socket
I tried to use podman a little while ago, but I gave up after failing to figure out how to get compose to work, but I think it may be time for me revisit this again.
OMG what is your keyboard. Sounds divine.
Docker is great, but it is important to know how to build the application nativity and updated them.
I still don't know how they could keep that many applications open and working on a single machine without being connecting to a mule network. Namastè.
just drink a cup of coffee
You would be surprised how many of these you can run on a tiny raspberry pi. I have most of my important homelab tools running on one, around 20 containers
VikingCoder is my favourite! TY Chuck Norris of the Viking Age!
Love this video by far one of the best
possibly one your coolest videos
danger zone is missing an opportunity to do an agreement with fx for an image of archer
great video, you help me to find some tools that i didnt know that i needed.
Danger zone run as an install raises alarm bells. Should have just been a website served from the container.
I don't understand why not use docker compose so you can forget the cli commands and then you can put them in a git repo.
9:35 love to hear that line again.....
Your voice sounds so peaceful
Man, thanks for all the information you shared is very helpful and inspiring. I identify myself when you almost jump out the screen because of the white light on the screen then you change it to the dark mode which is way more comfortable anyway keep up the good content
So cool.
I have just 1 question.
Why?
The enthusiasm is great. But the breathy affectation is kind of annoying.
nice video, thnx Chuck :D
Thanks for all the tricks. U the boss Chuck!
Hypervisors 1 and kernel isolation don't they offer better security actually? Ok at expensees of more resources needed wich is a downside of course
btw love docker of course
My favorite IT tool ❤
Just gonna say do it with podman for more isolation and trivy.
I liked your video because you debugged in it like a real man; you didn’t hide anything.
How can I get addicted to Docker?, we need a series of videos about this, docker ideas.
top notch, thank you