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
One suggestion might be to load a Debian build on it and use it for docker containers. With docker containers you can do so many different things. I have a PI 4 and it does all of the following:
PiHole - For blocking ads. (Everyone should have one of these)
OpenMediaVault - For NAS
Portainers - For loading docker containers
Radarr - Downloading Movies
Sonarr - Downloading TV Shows
Tautulli - Monitors my plex server
Overseer - Allows members of my plex share to request content.
NZBGET and Real-Debrid Torrent Downloader Clients - For downloading content from usenet or real-debrid.
I have one Pi4 running all of these as docker containers. Have fun!
Seconding - you can actually squeeze a surprising amount of use out of a Pi4 running Docker.
I have an 8gb one with ELK stack in docker compose, and it's struggling to say the least, even without traffic.
Any chance you can point to a good tutorial for setting up these apps on the RPi?
Let me start by saying I hope you enjoy this stuff. Some of these can be a bit much to setup. I personally love this stuff so for me although it can be challenging it's fun.
I started out by installing OMV 6 - Open Media Vault. https://www.addictedtotech.net/how-to-install-openmediavault-6-on-a-raspberry-pi-4/
That's your starting point. From there you can install "Portainer" from the OMV extras. Portainer is where you will put all your docker containers.
Here's another script you can use to install several of these if you want to do it without OMV or docker.
https://github.com/pijarr/pijarr
Amazing, thanks so much for sharing this additional info!