Self-Hosting Uptime Ping: Zero-Dependency Monitoring Tool

Self-Hosting Uptime Ping: Zero-Dependency Monitoring Tool You’ve got a handful of self-hosted services running. Nextcloud, Gitea, maybe a media server. How do you know when one goes down? Most people reach for Uptime Kuma — and it’s great. But sometimes you want something simpler. No Node.js runtime, no database, no dashboard you’ll never look at. Just ping your services, tell you when something’s down, and get out of the way. ...

February 16, 2026 · 7 min · Self Host Setup

Setting Up Watchtower: Auto-Update Docker Containers

One of the hidden maintenance costs of self-hosting is keeping everything updated. When you’re running 10, 20, or 50 Docker containers, manually pulling new images and recreating containers gets old fast. Miss an update and you might be running a version with known security vulnerabilities. Watchtower solves this by automatically monitoring your running containers, pulling new images when they’re available, and gracefully restarting containers with the same configuration. Set it up once, and your homelab stays current without you lifting a finger. ...

February 16, 2026 · 8 min · Self Host Setup

The Complete Docker Compose Backup Strategy for Self-Hosters

The Complete Docker Compose Backup Strategy for Self-Hosters You’ve got a dozen Docker Compose stacks humming along — Nextcloud for files, Vaultwarden for passwords, Gitea for code, maybe Immich for photos. Everything works great. Until it doesn’t. A corrupted disk, a bad update, an accidental docker volume rm — and suddenly you’re staring at data loss. If you don’t have a backup strategy, it’s only a matter of time. This guide walks through everything you need to back up your Docker Compose infrastructure properly. ...

February 16, 2026 · 5 min · Self Host Setup

Self-Hosting Wallabag: Read-It-Later Alternative to Pocket

If you’ve ever used Pocket or Instapaper to save articles for later, you know the value of a good read-it-later service. But those services track your reading habits, inject ads, and can shut down features at any time. Wallabag gives you the same experience — save articles with one click, read them distraction-free, sync across devices — entirely on your own server. In this guide, we’ll set up Wallabag with Docker, configure it with PostgreSQL for reliable storage, and connect browser extensions and mobile apps for a seamless reading workflow. ...

February 15, 2026 · 6 min · Self Host Setup

selfhost-doctor: One-Command Health Check for Your Self-Hosted Server

Your self-hosted server is humming along — but is it actually healthy? Disk filling up? Docker containers silently unhealthy? SSH config wide open? SSL certs about to expire? selfhost-doctor answers all of that with one command. Quick Start curl -fsSL https://raw.githubusercontent.com/bird/selfhost-doctor/main/selfhost-doctor.sh | bash That’s it. No installation, no dependencies, no API keys. Just a clean diagnostic report in your terminal. What It Checks selfhost-doctor runs through 7 categories of health checks: ...

February 15, 2026 · 6 min · Self Host Setup

Running Forgejo: Lightweight Gitea Fork for Code Hosting

Want to host your own code without relying on GitHub or GitLab? Forgejo is a community-driven fork of Gitea — lightweight, fast, and designed to stay free forever. It’s everything you need for private repos, CI/CD, and team collaboration on your own hardware. Why Forgejo Over Gitea? Forgejo forked from Gitea in 2022 after governance concerns. The key differences: Community-governed — no single company controls it Guaranteed free — committed to staying FOSS, no enterprise bait-and-switch Federation support — working toward ActivityPub integration (follow repos across instances) Same codebase — if you know Gitea, you know Forgejo Drop-in replacement — migrate from Gitea with zero data loss Prerequisites Docker and Docker Compose ~256MB RAM (runs great on a Pi) A domain (optional but recommended) Step 1: Setup mkdir -p ~/forgejo && cd ~/forgejo Step 2: Docker Compose Create docker-compose.yml: ...

February 13, 2026 · 4 min · Self Host Setup

Running Calibre-Web: Your Own eBook Library Server

If you have a collection of eBooks scattered across devices, Calibre-Web brings them together into a beautiful, self-hosted library you can access from anywhere. Think of it as your personal Kindle store — minus the DRM and data harvesting. Calibre-Web is a web-based frontend for the popular Calibre eBook manager. It gives you a clean, modern interface to browse, read, and download your books from any browser or eReader device. ...

February 12, 2026 · 6 min · Self Host Setup

Running LocalAI: OpenAI-Compatible API on Your Own Server

You’re already using OpenAI’s API for chat, embeddings, or image generation. But every request costs money, sends your data to a third party, and depends on their uptime. What if you could run the same API — same endpoints, same format — on your own hardware? That’s exactly what LocalAI does. What Is LocalAI? LocalAI is a drop-in replacement for the OpenAI API. It runs entirely on your server and supports: ...

February 12, 2026 · 6 min · Self Host Setup

Self-Hosted Backup Strategy with Restic and Rclone

You’re running a home server with important data — photos, documents, databases, configurations. What happens when a drive dies? When you accidentally rm -rf the wrong directory? When ransomware hits? Restic + Rclone is the gold standard backup combo for self-hosters. Restic creates fast, encrypted, deduplicated snapshots. Rclone syncs them to any cloud provider. Together, they give you enterprise-grade backups for free. The 3-2-1 Backup Rule Before we start, understand the rule that prevents data loss: ...

February 12, 2026 · 7 min · Self Host Setup

Self-Hosting Actual Budget: Open-Source Finance Tracking

Mint is dead. YNAB costs $99/year. Your bank’s budgeting tools are terrible. Actual Budget is the answer — a fast, privacy-first budgeting app you can self-host for free. Originally a paid product, Actual was open-sourced in 2022 and is now maintained by a thriving community. It’s one of the best self-hosted finance tools available, with envelope budgeting, bank sync, and a beautiful UI that works on desktop and mobile. Why Actual Budget? Envelope budgeting — assign every dollar a job (YNAB-style) Bank sync — automatic transaction imports via GoCardless (free for personal use) Fast — local-first architecture, syncs in the background Multi-device — access from any browser, sync across devices Import — migrate from YNAB, Mint, or any CSV/OFX/QFX export Reports — spending trends, net worth, cash flow charts Rules — auto-categorize transactions 100% private — your financial data never leaves your server Prerequisites A Linux server with Docker and Docker Compose ~128MB RAM (very lightweight) A domain or local IP for access Step 1: Create the Project Directory mkdir -p ~/actual-budget && cd ~/actual-budget Step 2: Docker Compose Setup Create docker-compose.yml: ...

February 12, 2026 · 6 min · Self Host Setup