AltFreeStack
Storagedocker-ready1-click-deploypermissive-license

Baserow: the best Open Source alternative to Airtable in 2026

Baserow is an open source alternative to Airtable with an interface very close to the original product, built for non-technical teams to build no-code databases.

License MIT 5.7k stars liveUpdated hace 1 díaWebsite GitHub Repository

Technical profile

License
MIT
Category
Storage
Replaces
Airtable
Tech stack
DjangoNuxt.jsPostgreSQL

Preview

Baserow interface preview

Public image provided by Baserow on its own website.

Key features

  • Drag-and-drop interface very similar to Airtable
  • Grid, Kanban, Calendar and Gallery views
  • Automatic REST API per table
  • Plugins and snapshots

Baserow vs. Airtable

Pros

  • Minimal learning curve if you're coming from Airtable
  • Very simple all-in-one Docker image to deploy

Things to consider

  • Advanced automations require the premium edition

Quick Docker installation guide

Copy this docker-compose.yml, adjust the example passwords and run docker compose up -d on your server. See the full step-by-step guide →

docker-compose.yml
version: "3.9"
services:
  baserow:
    image: baserow/baserow:1.28.2
    restart: unless-stopped
    ports:
      - "80:80"
      - "443:443"
    environment:
      - BASEROW_PUBLIC_URL=http://localhost
    volumes:
      - baserow_data:/baserow/data
volumes:
  baserow_data: