this post was submitted on 16 Nov 2025
124 points (97.0% liked)

Selfhosted

60409 readers
223 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

Detailed Rules Post

  1. Be civil.

  2. No spam.

  3. Posts are to be related to self-hosting.

  4. Don't duplicate the full text of your blog or readme if you're providing a link.

  5. Submission headline should match the article title.

  6. No trolling.

  7. Promotion posts require active participation, with an account that is at least 30 days old. F/LOSS without a paywall has exceptions, with requirements. See the rules link for details.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 3 years ago
MODERATORS
 

How's your stuff doing? Unplanned interruptions or achieving uptime records?

I'm currently sailing rather smooth. Most of my stuff is migrated to Komodo, there will stay some exceptions and I only have to migrate Lemmy itself I think. Of course that's when I found a potential replacement but I'll let it sit for a while before touching it again. Enjoying the occasional Merge Request notification from the Renovate Bot and knowing my stuff is mostly up to date.

I'm thinking about setting up some kind of Wiki for my other niche hobby (Netrunner LCG) lore as there's a fandom one that most people avoid touching and updating but since I likely won't have time to start writing some articles on my own as a kickoff I'm hesitant. Also not sure which wiki I'd choose as well.

you are viewing a single comment's thread
view the rest of the comments
[–] orenj@lemmy.kde.social 3 points 7 months ago* (last edited 7 months ago) (1 children)

Bought my first raspberry pi 5, 8 gb ram version. Gonna be using it to run a jellyfin server and maybe a foundry server if it can handle both concurrently. Anyone familiar enough to know if running multiple things on one of these is wise?

[–] tofu@lemmy.nocturnal.garden 2 points 7 months ago (1 children)

Running multiple things in one host is perfectly fine. The more you have, the more complicated dependencies will become. Tool A needing PHP < 8 and tool B needing PHP 9 can be handled but is a headache.

That's why many people are using containers, specifically Docker. Each tool brings their own dependencies that are running isolated. Not sharing dependencies is more resource intensive but easier to handle.

I'm not running the tools you mentioned but probably they list their resources requirements. I suggest you to check containers/Docker and consider using them instead of installing the tools natively.

[–] orenj@lemmy.kde.social 2 points 7 months ago

Ah, docker is a name I'd heard hanging around the lemmy space. I looked into it a little and couldn't figure out what its usecase was, but that makes a fair bit of sense, thanks