Navigating a large, complex database can be a significant challenge for developers, data analysts, and DBAs. This tool provides a comprehensive suite of features to design, explore, document, and analyze your database schema and data, no matter its size. It's built to follow your thought process and help you stay performant.
Key capabilities include:
You can get started immediately with a sample, an SQL file, or a direct database connection URL. No signup is required to begin exploring.
services:
db:
image: postgres:15-alpine
restart: unless-stopped
environment:
POSTGRES_USER: ${POSTGRES_USER}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
POSTGRES_DB: ${POSTGRES_DB}
volumes:
- ./postgres-data:/var/lib/postgresql/data
azimutt:
image: ghcr.io/azimuttapp/azimutt:latest
restart: unless-stopped
ports:
- "4000:4000"
environment:
DATABASE_URL: postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@db:5432/${POSTGRES_DB}
SECRET_KEY_BASE: ${SECRET_KEY_BASE}
PORT: 4000
PHX_HOST: localhost
depends_on:
- dbPOSTGRES_USER=azimutt
POSTGRES_PASSWORD=your_super_secret_password
POSTGRES_DB=azimutt
SECRET_KEY_BASE=your_super_secret_key_base_must_be_at_least_64_characters_long_for_phoenixAuto-fetched about 1 hour ago
Auto-fetched about 1 hour ago