Skip to content

Installation

dblumi is self-hosted. The recommended way to run it is with Docker.

  • Docker and Docker Compose
  • A PostgreSQL, MySQL, or Oracle database to connect to

Create a docker-compose.yml file:

services:
dblumi:
image: eodia/dblumi:latest
ports:
- "3000:3000"
environment:
- JWT_SECRET=your-secret-here
volumes:
- dblumi-data:/app/data
volumes:
dblumi-data:

Then run:

Terminal window
docker compose up -d

dblumi will be available at http://localhost:3000.

On first launch, you will be prompted to create an admin account. This account has full access to manage users, groups, and connections.

Add your first connection →