Gather continuous feedback from your users directly within your product, website, or via email. This open-source experience management suite allows you to ask the right questions at the exact moment users interact with your application, resulting in higher conversion rates and more accurate data. By utilizing no-code event tracking, you can trigger targeted surveys based on specific user actions without requiring constant developer intervention.
Key benefits include:
services:
postgres:
image: postgres:15-alpine
restart: always
environment:
POSTGRES_USER: formbricks
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
POSTGRES_DB: formbricks
volumes:
- ./postgres-data:/var/lib/postgresql/data
formbricks:
image: ghcr.io/formbricks/formbricks:latest
restart: always
ports:
- "3000:3000"
depends_on:
- postgres
environment:
DATABASE_URL: postgresql://formbricks:${POSTGRES_PASSWORD}@postgres:5432/formbricks
NEXTAUTH_URL: http://localhost:3000
WEBAPP_URL: http://localhost:3000
NEXTAUTH_SECRET: ${NEXTAUTH_SECRET}
ENCRYPTION_KEY: ${ENCRYPTION_KEY}POSTGRES_PASSWORD=your_super_secret_postgres_password
NEXTAUTH_SECRET=your_super_secret_nextauth_secret_at_least_32_chars
ENCRYPTION_KEY=your_super_secret_encryption_key_at_least_32_charsAuto-fetched about 24 hours ago
Auto-fetched about 24 hours ago