CRM & Supportdocker-ready
YetiForce CRM: the best Open Source alternative to Salesforce in 2026
YetiForce is a very complete open source CRM with 50+ modules (sales, projects, inventory, support) integrated into one platform, as a free alternative to Salesforce.
Technical profile
- License
- AGPL-3.0
- Category
- CRM & Support
- Replaces
- Salesforce
- Tech stack
- PHPMySQL
Key features
- 50+ integrated modules
- Project and inventory management included
- 100% free, no paid editions
YetiForce CRM vs. Salesforce
Pros
- Completely free, no hidden Enterprise version
Things to consider
- So many modules can be overwhelming during initial setup
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:
yetiforce:
image: yetiforce/yetiforce:latest
restart: unless-stopped
ports:
- "8080:80"
environment:
- DB_HOST=yetiforce-db
- DB_NAME=yetiforce
- DB_USER=yetiforce
- DB_PASS=yetiforce
depends_on:
- yetiforce-db
yetiforce-db:
image: mariadb:11
restart: unless-stopped
environment:
- MYSQL_ROOT_PASSWORD=root
- MYSQL_DATABASE=yetiforce
- MYSQL_USER=yetiforce
- MYSQL_PASSWORD=yetiforce
volumes:
- yetiforce_db_data:/var/lib/mysql
volumes:
yetiforce_db_data: