From the course: Container Management with Podman
Unlock this course with a free trial
Join today to access over 25,300 courses taught by industry experts.
Introduction to pods - Podman Tutorial
From the course: Container Management with Podman
Introduction to pods
- [Instructor] Imagine this. You're running a web app in one container and a database in another, but they can't talk to each other, so you're stuck with troubleshooting network issues. Sounds quite annoying, doesn't it? Well, in this video we'll find out how pods in Podman solve that problem, by letting containers share the same network. So let's start with the basics. What is a pod? Well, to put it simply, it's just a group of one or more containers that run together and share network resource. So pods are great when you have containers that need to work closely together. You can use pods to build modular, reusable setups where services can share resources. And because pods mirror Kubernetes architecture, learning them in Podman prepares you for more complex environments later. I would like to point out that even if containers in a pod share network resources, they still have isolated file systems and processes,…