The question landing in engineering Slacks this week isn't "which SaaS should we buy?" It's "which SaaS can we finally stop renting?" Renewal quotes jumped again, a per-seat Datadog bill crossed into six figures, and someone read the fine print on where their data actually lives. As of July 2026 the self-hosting renaissance is real, and it's driven less by ideology than by three concrete pressures: data ownership, compliance (GDPR, HIPAA, SOC 2), and total cost of ownership.
The catch is that "open-source alternative" covers a huge quality range, from weekend projects to tools that genuinely out-feature their commercial parents. Below are 12 that clear the bar in 2026, grouped by the SaaS they replace, with the honest tradeoffs each one carries.
Why is everyone self-hosting again in 2026?
Three forces converged. First, SaaS pricing moved to consumption and per-seat models that punish growth: your bill scales with success, not value. Second, regulators got teeth, and "our data sits in a US region we can't audit" stopped being an acceptable answer for EU and healthcare customers. Third, the tooling got good. A single docker compose up now stands up software that needed a platform team five years ago.
The opinionated part: self-hosting is not "free." You trade a predictable invoice for engineering hours, backups, patching, and an on-call pager. For a team under roughly 15 people, the managed SaaS is often still cheaper once you price your own time honestly. The math flips when a tool is seat-priced and you have hundreds of users, when the data legally can't leave your walls, or when a single observability vendor is quietly eating your margin. Directories like OpenAlternative are a good starting map before you commit.
What replaces Notion?
Two projects attack this from different angles. AppFlowy is local-first: your notes and databases live on your machine, sync is optional, and it can run local AI models so your prompts never leave the box, a genuine draw for privacy-sensitive teams. AFFiNE merges docs, whiteboards, and databases onto one edgeless canvas, so a spec and its architecture diagram live in the same document instead of two tabs.
Pick AppFlowy if data locality and offline-first matter most; pick AFFiNE if your team thinks visually and wants the whiteboard-plus-doc hybrid Notion never nailed.
What replaces Airtable?
The split here is whether you already have a database. NocoDB wraps an existing SQL database (Postgres, MySQL) in a spreadsheet UI, so it's the pragmatic choice when your data already lives in Postgres and you just want a friendly grid on top. Baserow is a from-scratch, MIT-licensed no-code platform with compliance credentials that matter for regulated shops: GDPR, HIPAA, and SOC 2 Type II. As of mid-2026 its "Kuma" AI can generate schemas from a prompt and populate AI fields, closing the gap with Airtable's own AI push.
What replaces Salesforce and HubSpot?
Twenty is the CRM that finally looks like software from this decade. Built on React, GraphQL, and Postgres, it's API-first and ships a full Docker setup, so you can self-host the whole thing and extend it through its GraphQL API instead of a proprietary plugin marketplace. It's younger than the incumbents and you'll hit missing features, but for teams that want to own their pipeline data it's the most credible open CRM in 2026.
What replaces Vercel and Netlify?
Coolify is the headline story. After roughly two years in beta it shipped stable v4.0.0 in April 2026 and sits around 52–56k GitHub stars, making it the most popular self-hosted PaaS. Point it at your own VPS, connect a Git repo, and it gives you git-push deploys, databases, and 280+ one-click services, the Vercel developer experience on hardware you rent for a flat monthly fee. Two lighter alternatives are worth knowing: Dokploy and Komodo, both leaner if you don't need Coolify's full surface area.
This is the category where the cost argument is sharpest: a $20–40/month VPS can host what a usage-priced PaaS bills hundreds for at scale. If you go this route, pair it with our guides on Docker best practices for production and zero-downtime deployments so self-hosting doesn't mean self-inflicted outages.
What replaces Google Analytics?
Privacy-first analytics is now a crowded, mature field. Plausible is the lightweight, cookieless, GDPR-friendly default, a single small script and a clean dashboard. Umami is a comparable self-hosted option if you want to own the database outright. PostHog is the heavyweight: product analytics, session replay, feature flags, and experiments in one platform, closer to a Mixpanel/Amplitude replacement than a plain GA swap. Choose by depth: Plausible or Umami for "how many visitors," PostHog for "why do users churn."
What replaces Datadog and Grafana?
This is where six-figure bills go to die. SigNoz is OpenTelemetry-native and ClickHouse-backed, giving you logs, metrics, and traces in one app, an OSS full-stack observability suite. OpenObserve ships as a single Go binary covering logs, metrics, traces, and RUM, storing data in a columnar format on S3, which is where its headline claim comes from: 80–90% lower cost than Datadog at scale. Both are OpenTelemetry-first, so instrument once and keep your options open.
If observability itself is fuzzy, start with our primer on logs, metrics, and traces, then read how to cut your cloud bill with FinOps for the discipline that makes any of these savings stick.
What replaces 1Password and Google Photos?
Vaultwarden is a lightweight Rust reimplementation of the Bitwarden server that's fully compatible with official Bitwarden clients, so your team keeps the polished apps and browser extensions while the vault lives on your own hardware. It's a natural companion to a broader move toward passkeys and WebAuthn.
For media, Immich has become the default Google Photos replacement. Its v2.5.0 "90,000 Stars Release" in January 2026 added non-destructive editing (edits are stored in the database, originals untouched) and a built-in backup/restore pipeline you can drive from the web UI. Pair it with Jellyfin for video and you've replaced Google Photos and a streaming subscription.
The 12 at a glance
SaaS replaced | Open-source pick | Stack / note | License |
|---|---|---|---|
Notion | AppFlowy | Local-first, runs local AI models | AGPL |
Notion | AFFiNE | Docs + whiteboard + DB canvas | MIT/GPL |
Airtable | NocoDB | Wraps existing SQL DBs | AGPL |
Airtable | Baserow | GDPR/HIPAA/SOC 2, "Kuma" AI | MIT |
Salesforce/HubSpot | Twenty | React/GraphQL/Postgres, full Docker | AGPL |
Vercel/Netlify | Coolify | Stable v4.0 (Apr 2026), ~55k stars | Apache-2.0 |
Google Analytics | Plausible | Cookieless, lightweight | AGPL |
Google Analytics | PostHog | Product analytics + replay + flags | MIT |
Datadog | SigNoz | OTel-native, ClickHouse | MIT |
Datadog | OpenObserve | Single binary, S3 storage, ~80–90% cheaper | AGPL |
1Password | Vaultwarden | Bitwarden-compatible, Rust | AGPL |
Google Photos | Immich | v2.5, non-destructive edits, DB backup | AGPL |
What does self-hosting actually cost?
The honest total-cost-of-ownership picture has four line items the "free" label hides: infrastructure (a VPS or a node in your cluster), operations (backups, upgrades, TLS, monitoring), migration (getting data out of the SaaS and validating it), and risk (you now own uptime). A quick way to spin most of these up:
# Most of these tools ship a compose file — Coolify's one-liner is the template
curl -fsSL https://cdn.coollabs.io/coolify/install.sh | bash
# Then it's the same pattern everywhere: pull, configure env, up
docker compose pull && docker compose up -dBudget for the operations line specifically, it's the one teams underestimate. If you're running these on Kubernetes, the same rigor from Kubernetes cost optimization applies. Browse the rest of our DevOps & Cloud category for the operational depth self-hosting demands.
Frequently Asked Questions
Is self-hosting actually cheaper than SaaS?
Sometimes. It's cheaper when a tool is seat-priced and you have many users, when an observability or PaaS bill scales into five or six figures, or when compliance forbids the data leaving your infrastructure. It's often more expensive for small teams once you price the engineering hours for backups, upgrades, and on-call. Do the TCO math per tool, not as a blanket policy.
Are open-source alternatives compliant with GDPR and HIPAA?
Self-hosting gives you the data residency and control that make compliance possible, but it doesn't grant it automatically. Baserow, for example, advertises GDPR, HIPAA, and SOC 2 Type II support, yet you still own the configuration: encryption at rest, access controls, audit logs, and backups. The tool enables compliance; your operations achieve it.
What's the easiest SaaS to replace first?
Analytics and password management are the gentlest on-ramps. Plausible or Umami is a single script and a small database, and Vaultwarden reuses the official Bitwarden clients so your team barely notices the switch. Save Datadog and CRM migrations for when you've built the operational muscle.
Do I need Kubernetes to self-host these?
No. Almost every tool here ships a Docker Compose file and runs comfortably on a single VPS. Reach for Kubernetes only when you need multi-node scale or high availability, and when you do, apply the same cost and reliability discipline you'd use for any production workload.



