Baserow logo

Baserow

No-code database and spreadsheet platform, an Airtable alternative

Alternative to: airtable, smartsheet, google sheets

Baserow screenshotBaserow screenshot

Baserow is an open-source no-code database tool that lets you build spreadsheet-like databases, applications, dashboards and automations without writing code. It gives full control over your data with self-hosting, an intuitive grid interface, custom field types, and API access, positioning itself as an open-core alternative to Airtable.

Baserow Docker Compose example

Self-host Baserow on your own server, homelab, or VPS starting from this Docker Compose example. It runs Baserow in Docker containers using the official baserow/baserow:latest image, with persistent volumes and automatic restarts preconfigured. Review the environment variables and adjust them to your setup, save the file as compose.yml (or docker-compose.yml), and start the stack with docker compose up -d.

services:
  baserow:
    image: baserow/baserow:latest
    restart: unless-stopped
    environment:
      # Public URL used to reach this Baserow instance. Set to https://YOUR_DOMAIN or http://YOUR_IP to enable external access.
      BASEROW_PUBLIC_URL: "http://localhost"
    volumes:
      - data:/baserow/data

volumes:
  data:

Prefer a managed setup? WinterFlow installs, configures, and updates Baserow for you using this same Docker Compose configuration.