Selfhosted
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:
-
Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.
-
No spam posting.
-
Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.
-
Don't duplicate the full text of your blog or github here. Just post the link for folks to click.
-
Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).
-
No trolling.
Resources:
- selfh.st Newsletter and index of selfhosted software and apps
- awesome-selfhosted software
- awesome-sysadmin resources
- Self-Hosted Podcast from Jupiter Broadcasting
Any issues on the community? Report it using the report flag.
Questions? DM the mods!
view the rest of the comments
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?
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.
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