Back to Apps
Baserow

Deploy Baserow on Your Own Server

Open Source No-Code Database And Airtable Alternative

πŸ—„οΈ DatabasesπŸ› οΈ Developer Tools

Want to deploy Baserow on your server faster? Try Senate with one-command setup, automatic HTTPS and monitoring.

Get Started

What is Baserow?

Baserow is an open-source online database tool. Users can use this no-code platform to create a database without any technical experience. It lowers the barriers to app creation so that anyone who can work with a spreadsheet can also create a database. The interface looks a lot like a spreadsheet.

Learn more

Self-Host Baserow

Follow these steps to deploy on your own server.

1

Install Docker

Skip this step if Docker is already installed on your server.

curl -fsSL https://get.docker.com | sh
2

Configure

Customize the settings below. Defaults work for most cases.

General
3

Deploy

Copy the configuration and run it on your server.

services:
  baserow:
    image: baserow/baserow:1.18.0
    environment:
      BASEROW_PUBLIC_URL: http://baserow.your-domain.com
      EMAIL_SMTP: ""
      EMAIL_SMTP_HOST: ""
      EMAIL_SMTP_PASSWORD: ""
      EMAIL_SMTP_PORT: ""
      EMAIL_SMTP_USER: ""
      EMAIL_SMTP_USE_SSL: ""
      EMAIL_SMTP_USE_TLS: ""
      FROM_EMAIL: ""
    volumes:
      - baserow-data:/baserow/data
volumes:
  baserow-data: {}

Then run:

docker compose up -d
4

Access

Once started, access your app at http://localhost:80

Why Self-Host Baserow?

Full Data Ownership

Your data stays on your servers. No third-party access.

No Monthly Fees

Pay only for your server. No per-seat or usage charges.

Complete Control

Customize, backup, and scale on your own terms.

Privacy & Compliance

Meet GDPR, HIPAA, or internal security requirements.

Technical Details

Docker Image

baserow/baserow:${BASEROW_VERSION}

Official Docs

baserow.io

Want to go faster?

Try Senate! Senate handles Docker, HTTPS, updates, and monitoring for you. Deploy any of our 300+ apps with a single command.

Install on any Linux server:

sh -c "$(curl -sSL https://get.senate.sh)"