this post was submitted on 07 Oct 2025
451 points (98.9% liked)

Programmer Humor

26772 readers
2965 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[โ€“] duckman@startrek.website 12 points 2 days ago (1 children)

I've got a kubernetes cluster with 2 pis right now. Its apart of a bigger cluster but still. All containers are, are isolated preccesses so its barely different than launching any other process.

Now if that container is like Plex or an ollama serve or something...

[โ€“] cogman@lemmy.world 9 points 2 days ago

All containers are, are isolated preccesses so its barely different than launching any other process.

The two biggest differences are that containers use more disk space vs non-containers and that containers won't use shared libraries. That means that instead of loading up 1 version of glibc for most of the OS, you end up with n containers glibcs loaded up.

Practically speaking, this isn't really a huge deal. A lot of those libraries fit in less than 1mb. A disaster if this was my childhood computer. A non-issue on modern systems with more than 512mb of ram.