Are you using our SaaS platform (Baserow.io) or self-hosting Baserow?
Self-hosted
If you are self-hosting, what version of Baserow are you running?
latest version
If you are self-hosting, which installation method do you use to run Baserow?
latest version
What are the exact steps to reproduce this issue?
Provision a new VPS from Datalix, running Ubuntu 22.04.Install Docker and Docker Compose. In a directory, create the following docker-compose.yml file:
services:
baserow-db:
image: postgres:15
container_name: baserow-db
restart: unless-stopped
environment:
POSTGRES_USER: baserow
POSTGRES_PASSWORD: 1234@
POSTGRES_DB: baserow
volumes:
- ./baserow-db-data:/var/lib/postgresql/data
ports: - “5433:5432”
baserow:
image: baserow/baserow:latest
container_name: baserow
restart: unless-stopped
depends_on: - baserow-db
environment:
DATABASE_HOST: baserow-db
DATABASE_NAME: baserow
DATABASE_USER: baserow
DATABASE_PASSWORD: 1234@
BASEROW_PUBLIC_URL: http://datalix:3000
ports: - “3000:3000”
volumes: - ./baserow-data:/baserow/data
Run docker compose up -d to start the containers. From the server’s command line, run curl http://localhost:3000.