AltFreeStack
CRM & Supportdocker-ready1-click-deploy

Twenty: the best Open Source alternative to Salesforce in 2026

Twenty is a modern CRM built to be the open source equivalent of Salesforce/HubSpot, with a very flexible spreadsheet-like interface and a fully customizable data model.

License AGPL-3.0 55.9k stars liveUpdated hoyWebsite GitHub Repository

Technical profile

License
AGPL-3.0
Category
CRM & Support
Replaces
Salesforce, HubSpot
Tech stack
NestJSReactPostgreSQL

Preview

Twenty interface preview

Public image provided by Twenty on its own website.

Key features

  • 100% customizable fields and objects
  • Table and pipeline Kanban views
  • GraphQL and REST API

Twenty vs. Salesforce

Pros

  • Modern interface, very quick for teams to adopt

Things to consider

  • Still fewer native integrations than Salesforce/HubSpot

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:
  twenty:
    image: twentycrm/twenty-front:latest
    restart: unless-stopped
    ports:
      - "3000:3000"
    environment:
      - PG_DATABASE_URL=postgres://twenty:twenty@twenty-db:5432/twenty
      - APP_SECRET=change-me-super-secret
    depends_on:
      - twenty-db
  twenty-db:
    image: postgres:15-alpine
    restart: unless-stopped
    environment:
      - POSTGRES_USER=twenty
      - POSTGRES_PASSWORD=twenty
      - POSTGRES_DB=twenty
    volumes:
      - twenty_pg_data:/var/lib/postgresql/data
volumes:
  twenty_pg_data: