Artificial Intelligencedocker-ready1-click-deploy
Typebot: the best Open Source alternative to Typeform in 2026
Typebot combines conversational forms with AI blocks, conditional logic and integrations, letting you build chatbots and visual surveys as an alternative to Typeform.
Technical profile
- License
- AGPL-3.0
- Category
- Artificial Intelligence
- Replaces
- Typeform
- Tech stack
- Next.jsPostgreSQL
Preview

Public image provided by Typebot on its own website.
Key features
- Visual conversational flow editor
- Built-in AI blocks (OpenAI and others)
- Embeddable widget on any website
Typebot vs. Typeform
Pros
- Combines Typeform's UX with conversational logic and AI
Things to consider
- The full visual editor needs both the builder and viewer services
Quick Docker installation guide
Copy this docker-compose.yml, adjust the example passwords and run docker compose up -d on your server. See the full step-by-step guide →
docker-compose.yml
version: "3.9"
services:
typebot-builder:
image: baptistearno/typebot-builder:latest
restart: unless-stopped
ports:
- "3000:3000"
environment:
- DATABASE_URL=postgresql://typebot:typebot@typebot-db:5432/typebot
- ENCRYPTION_SECRET=change-me-32-char-secret
depends_on:
- typebot-db
typebot-db:
image: postgres:15-alpine
restart: unless-stopped
environment:
- POSTGRES_USER=typebot
- POSTGRES_PASSWORD=typebot
- POSTGRES_DB=typebot
volumes:
- typebot_pg_data:/var/lib/postgresql/data
volumes:
typebot_pg_data: