Pods | Kubernetes
https://kubernetes.io/docs/concepts/workloads/podsPods. Pods are the smallest deployable units of computing that you can create and manage in Kubernetes.. A Pod (as in a pod of whales or pea pod) is a group of one or more containers, with shared storage and network resources, and a specification for how to run the containers.A Pod's contents are always co-located and co-scheduled, and run in a shared context.
Pods with Docker
https://birthday.play-with-docker.com/pods-with-dockerLaunch the pod. The first container in the pod is created by launching a container mypod with a long-running process. Usually this is an infinite loop but in our case, the primary container will run for one hour (3600 seconds): docker container run -d --name mypod alpine sleep 3600.