this post was submitted on 10 Jun 2025
80 points (93.5% liked)

Linux

7932 readers
549 users here now

A community for everything relating to the GNU/Linux operating system

Also check out:

Original icon base courtesy of [email protected] and The GIMP

founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 11 points 1 week ago (4 children)

Using the open source Containerization package, it runs a lightweight VM for each container that you create.

A big improvement over the stupid shit Docker Desktop did (running a bigass ugly VM for all containers). I'll still stick with my Linux laptop ;)

[–] [email protected] 2 points 1 week ago (3 children)

I believe Podman uses a Fedora CoreOS VM. How does that compare?

[–] [email protected] 2 points 1 week ago (2 children)

I'm not sure. To me, the most interesting thing is that each container gets its own VM. I don't know if podman does that or not. I'd guess not, since CoreOS isn't the lightest OS around (I've used CoreOS and Flatcar extensively at my job and it's a lil chunky as far as immutable container host OSes go).

[–] [email protected] 3 points 1 week ago (1 children)

What would be the use case for each container getting its own VM?

[–] [email protected] 2 points 1 week ago

Each VM can be sized appropriately for the demands of the container. With docker desktop, you can't have a container use all of your system cores without making the VM have access to all of your cores all the time always. One of the biggest benefits (imo) of running containers on a Linux workstation is that if you don't define a CPI limit, a container can use all the compute/memory on your system. You just can't do that with Docker desktop. This also affects multi threaded container builds when you're using buildkit.

Being able to spin up a vm to build a container with all cores accessible to it, and then run the actual container with a smaller number of cores would make container builds so much faster.

EDIT: I've looked, and it appears that podman desktop also does 1 big VM, rather than having 1 VM per container.