Baserow is a no-code database platform that transforms your data into customizable tables and interfaces. It’s an open-source alternative to Airtable, offering collaborative editing, views and plugins. Users can build apps, manage projects, or track inventories without writing SQL. It integrates with various tools and supports REST APIs for automation. Perfect for teams needing a flexible data platform with visual controls.

Setup

docker-compose.yaml

version: '3.4'

networks:
  docker_net:
    external: true

volumes:
  data:

services:
  baserow:
    container_name: baserow
    image: baserow/baserow:latest
    restart: unless-stopped
    environment:
      - BASEROW_PUBLIC_URL=$BASEROW_PUBLIC_URL
    ports:
      - 3010:80
      - 3020:443
    volumes:
      - data:/baserow/data
    networks:
      - docker_net

Sources