Stop losing valuable engineering hours to building and maintaining internal tools. This platform lets you build and deploy full-stack, enterprise-ready applications in minutes, not months. Describe what you need in natural language, and the AI App Builder turns your ideas into production-ready dashboards, admin panels, and automated workflows. It's a complete solution designed to clear your internal tool backlog faster.
Key capabilities include:
services:
postgres:
image: postgres:13
restart: always
volumes:
- ./postgres-data:/var/lib/postgresql/data
environment:
- POSTGRES_USER=tooljet
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
- POSTGRES_DB=tooljet
tooljet:
image: tooljet/tooljet-ce:latest
restart: always
ports:
- 8022:3000
depends_on:
- postgres
environment:
- TOOLJET_HOST=http://localhost:8022
- PG_HOST=postgres
- PG_PORT=5432
- PG_DB=tooljet
- PG_USER=tooljet
- PG_PASSWORD=${POSTGRES_PASSWORD}
- SECRET_KEY_BASE=${SECRET_KEY_BASE}
- LOCKBOX_MASTER_KEY=${LOCKBOX_MASTER_KEY}
# PostgreSQL Database Password
POSTGRES_PASSWORD=your_secure_postgres_password
# ToolJet Secret Key Base (Generate a 64-byte hex string, e.g., using `openssl rand -hex 64`)
SECRET_KEY_BASE=your_super_secret_key_base_replace_me_with_64_byte_hex_string
# ToolJet Lockbox Master Key (Generate a 32-byte hex string, e.g., using `openssl rand -hex 32`)
LOCKBOX_MASTER_KEY=your_lockbox_master_key_replace_me_with_32_byte_hex_string
Auto-fetched about 1 hour ago
Auto-fetched about 1 hour ago