The Beginner Homelab Guide: First 5 Services Worth Running
You don't need expensive hardware to start self-hosting. Here are five services that are worth the setup time and run comfortably on any low-power mini PC.
Starting a homelab doesn’t require a rack of servers or a significant investment. A mini PC from Amazon — something in the Intel N100 class, running around $150-200 — is enough to run everything in this guide comfortably. You can also use a spare laptop, an old desktop, or a Raspberry Pi 4 if you already have one.
The biggest barrier to starting is knowing which services are worth the effort. Here are five that provide clear value, aren’t too painful to set up, and are genuinely useful once running.
What You Need Before Starting
A few prerequisites that apply to all of these:
Docker and Docker Compose — All five services below run in containers. Install Docker on your server (the official docs for your OS are straightforward). You don’t need to understand Docker deeply to use it; you just need it installed.
A static local IP — Assign your server a static IP address on your router so it doesn’t change. Most home routers support DHCP reservations by MAC address, which is the easiest way.
Basic command line comfort — You’ll need to edit a text file and run a few commands. If you’ve done that before, you’re set.
1. Nextcloud — Your Own Cloud Storage
Nextcloud is a self-hosted alternative to Google Drive, iCloud, and Dropbox. It syncs files across your devices, has a web interface, and has mobile apps for iOS and Android.
Why it’s worth running: your files live on your hardware, not someone else’s. No storage limits except your own disk. No subscription fees.
The basic setup with Docker Compose takes 20-30 minutes. You’ll configure a container for Nextcloud itself and one for a database (MariaDB or PostgreSQL). After that, you access it from any browser on your network, and you can optionally expose it to the internet via a reverse proxy.
Hardware note: Nextcloud runs fine on an N100 mini PC for personal use. If you want to run it for a family with heavy video syncing, you’ll want faster storage (NVMe over SATA) and potentially more RAM.
2. Pi-hole — Network-Wide Ad Blocking
Pi-hole is a DNS sinkhole that blocks ads and trackers at the network level. When a device on your network makes a DNS request for a known ad domain, Pi-hole returns nothing. The request never completes.
Why it’s worth running: it blocks ads on every device on your network, including devices that don’t support browser extensions (smart TVs, game consoles, phones, IoT devices). It also gives you visibility into what your devices are actually communicating with.
Pi-hole has low resource requirements. It runs on a Raspberry Pi 1 adequately. Setup involves running the Docker container, then pointing your router’s DNS to the Pi-hole’s IP address. After that, it works transparently.
The default blocklists catch most ads. You can add additional community blocklists for more coverage.
3. Vaultwarden — Self-Hosted Password Manager
Vaultwarden is a self-hosted, community-maintained server compatible with Bitwarden clients. You get all the Bitwarden apps (browser extension, desktop, mobile) pointing at your own server instead of Bitwarden’s.
Why it’s worth running: full control over your password vault. No subscription required for premium features (TOTP in the browser extension, file attachments). If Bitwarden’s service goes down or changes their pricing, your setup is unaffected.
The tradeoff: you’re responsible for keeping it running and backed up. If your server dies and you haven’t backed up the vault database, you lose your passwords. Set up automated backups to an external drive or cloud storage before relying on this for everything.
Security note: Vaultwarden requires HTTPS. Don’t expose it to the internet over plain HTTP. A reverse proxy with a Let’s Encrypt certificate handles this.
4. Home Assistant — Home Automation Hub
Home Assistant is an open-source platform for home automation. It integrates with hundreds of smart home devices and provides a local dashboard for controlling them.
Why it’s worth running: local control without depending on cloud services that get discontinued. Many smart home devices work locally when paired with Home Assistant even if the manufacturer’s cloud goes away.
Home Assistant is the most complex item on this list but also has the most active community. If you have any smart home devices, you’ll likely find integration guides already written.
The hardware requirement is modest: a Raspberry Pi 4 or a mini PC works fine. There’s also a dedicated Home Assistant OS you can install on its own machine if you want to keep things separate.
5. Jellyfin — Media Server
Jellyfin is a self-hosted media server for your video and music library. It streams your files to web browsers, mobile apps, smart TVs, and Chromecast.
Why it’s worth running: if you have a large local media library, Jellyfin makes it accessible on any device in your home (and optionally outside your home) with a clean interface.
The main requirement is hardware transcoding support if you want to stream to devices that can’t play your source formats directly. An N100 mini PC handles transcoding reasonably well. If you have a lot of 4K content, a machine with a dedicated GPU or Intel Quick Sync support will perform better.
Getting Started
The order I’d recommend: Pi-hole first (low effort, immediate network-wide benefit), then Vaultwarden (high value, moderate setup), then Nextcloud.
Home Assistant and Jellyfin are more dependent on your specific situation. If you have smart home devices or a large media library, they’re worth it. Otherwise, get comfortable with the first three before adding more.
For hardware, any Intel N100 mini PC works well. These can be found on Amazon for around $150-200. Add a 1TB NVMe drive if you plan to run Nextcloud with significant storage, or use an external USB drive attached to the server.
The investment in the first weekend of setup pays off over years of not paying subscription fees for services you control.
Related
Top 20 Self-Hosted Apps to Replace Google Workspace
The complete list of self-hosted alternatives to Google Drive, Gmail, Calendar, Photos, and the rest of the Workspace stack. What actually works and what's worth the setup time.
Docker Compose in 20 Minutes: Your First Self-Hosted Stack
A step-by-step walkthrough of setting up Docker Compose and running your first self-hosted services. No prior Docker experience required.
Proxmox 8 vs VMware ESXi Free: 2026 Homelab Comparison
VMware ended its free ESXi tier in 2024. In 2026, Proxmox VE 8 is the dominant free hypervisor for homelabs. Here's how they compare and why Proxmox wins for most home use cases.