Why Self-Host Your Kanban Board?
Commercial project management platforms like Trello, Monday.com, and Asana charge per-user subscription fees, restrict features behind paid tiers, and store every detail of your workflows on their servers. Self-hosting a Kanban board flips this model entirely:
- Zero per-seat pricing — invite your entire team without worrying about licensing costs
- Full data ownership — task descriptions, attachments, and activity logs never leave your infrastructure
- Unlimited boards and projects — scale to hundreds of boards without artificial limits
- Deep integrations — connect directly to your self-hosted Git server, CI/CD pipeline, and chat systems without relying on third-party OAuth
- Custom workflows — extend the software to match your processes instead of adapting your processes to the software
- Always available — no dependency on a vendor’s uptime, API rate limits, or pricing policy changes
For small teams, homelab operators, freelancers, and privacy-conscious organizations, self-hosted Kanban boards provide Trello-class functionality with complete autonomy. This guide compares the four leading open-source options and gives you production-ready deployment instructions for each.
Feature Comparison at a Glance
| Feature | Kanboard | WeKan | Planka | Focalboard |
|---|---|---|---|---|
| License | MIT | MIT | AGPL-3.0 | MIT |
| Language | PHP | JavaScript (Meteor) | React + Node.js | Go + React |
| Database | SQLite / MySQL / PostgreSQL | MongoDB | PostgreSQL | SQLite / PostgreSQL |
| docker Image | ✅ Official | ✅mattermost | ✅ Official | ✅ Mattermost image |
| Memory Footprint | ~50 MB | ~500 MB | ~200 MB | ~150 MB |
| Real-time Updates | ❌ Manual refresh | ✅ Live (DDP) | ✅ Live (WebSockets) | ✅ Live (WebSockets) |
| Kanban View | ✅ | ✅ | ✅ | ✅ |
| Table/List View | ✅ | ✅ | ❌ | ✅ |
| Calendar View | ✅ (plugin) | ❌ | ❌ | ✅ |
| Gantt View | ✅ (plugin) | ❌ | ❌ | ❌ |
| Subtasks | ✅ | ✅ | ✅ | ✅ |
| Checklists | ✅ | ✅ | ✅ | ✅ |
| Labels / Colors | ✅ | ✅ | ✅ | ✅ |
| Custom Fields | ✅ (plugin) | ✅ | ❌ | ✅ |
| Time Tracking | ✅ Built-in | ❌ | ✅ Built-in | ❌ |
| File Attachments | ✅ Local / S3 | ✅ Local / S3 / GridFS | ✅ Local / S3 | ✅ Local / S3 |
| Markdown Support | ✅ | ✅ | ✅ | ✅ |
| User Management | ✅ LDAP / OAuth2 / SAML | ✅ LDAP / OAuth2 / SAML | ✅ OAuth2 (OIDC) | ✅ Mattermost SSO |
| Notification System | ✅ Email / Webhooks | ✅ Email / Webhooks | ✅ Mattermost webhooks | |
| API | ✅ JSON-RPC | ✅ REST | ✅ REST | ✅ REST |
| Multi-language | 35+ languages | 20+ languages | English only | 10+ languages |
| Activity Stream | ✅ Detailed | ✅ Detailed | ✅ Detailed | ✅ Basic |
| Swimlanes | ✅ | ✅ | ❌ | ❌ |
| WIP Limits | ✅ Built-in | ❌ | ❌ | ❌ |
| Automation Rules | ✅ Built-in | ✅ | ❌ | ❌ |
| Mobile Responsive | ⚠️ Basic | ✅ | ✅ | ✅ |
Kanboard — The Lightweight Powerhouse
Kanboard is the oldest and most battle-tested option in this comparison. First released in 2013, it prioritizes simplicity, performance, and a comprehensive feature set over modern UI aesthetics. Its PHP architecture means it runs on virtually any server, and the plugin ecosystem adds dozens of capabilities beyond the core feature set.
When to Choose Kanboard
- You want the smallest resource footprint
- You need WIP limits, swimlanes, or Gantt charts
- You require LDAP, OAuth2, or SAML authentication
- You prefer stability and maturity over a flashy interface
- You want built-in time tracking and automation rules
Docker Compose Deployment
Kanboard runs on a simple PHP stack. The official Docker image packages everything you need:
| |
Save this as docker-compose.yml and start it:
| |
The web interface is available at http://your-server:8080. Default credentials are admin / admin — change these immediately after first login.
Essential Configuration Steps
1. Enable LDAP authentication:
Add to your config.php (or set via environment variable):
| |
2. Install popular plugins:
Kanboard’s plugin system is one of its strongest features. Install from the admin panel or via CLI:
| |
3. Set up automation rules:
Navigate to a project’s settings → Actions. Kanboard ships with a powerful built-in automation engine. Example rules:
- “When a task is created in column ‘Backlog’, assign it to user X”
- “When a task is moved to ‘Done’, close the task automatically”
- “When a comment is added, send a webhook notification to Slack”
- “When a task has been in ‘In Progress’ for more than 7 days, change color to red”
WeKan — The Trello-Like Experience
WeKan most closely replicates the Trello experience. Built on Meteor, it offers real-time collaboration through its Distributed Data Protocol (DDP), meaning changes appear instantly for all users without page refreshes. Its card-based drag-and-drop interface is polished and intuitive.
When to Choose WeKan
- You want the closest open-source equivalent to Trello
- Real-time collaboration is a priority
- Your team is already familiar with Trello’s interface
- You need SAML or OAuth2 for enterprise SSO
- You want a large, active community
Docker Compose Deployment
WeKan requires MongoDB. The official Docker Compose setup handles everything:
| |
The MongoDB replica set initialization is required for WeKan’s real-time features. Start it with:
| |
After the containers start, visit http://your-server:8080 and create your admin account on first launch.
Useful WeKan Features
Board Templates: Create a board, set up your columns and labels, then click “Board Menu” → “More” → “Save as Template.” New boards can be created from any saved template, making it easy to standardize workflows across teams.
Custom Fields: Add text, number, date, checkbox, dropdown, and user fields to cards. This turns WeKan from a simple task tracker into a lightweight database for inventory, issue tracking, or CRM workflows.
Card Archiving: Instead of deleting completed cards, archive them. They remain searchable and can be restored later. The archive is accessible from the board menu and preserves full card history.
Planka — The Modern Minimalist
Planka is the newest contender in this comparison, built with React on the frontend and Node.js on the backend. It has a clean, modern interface that feels right at home alongside contemporary SaaS tools. While it has fewer features than Kanboard or WeKan, what it offers works exceptionally well.
When to Choose Planka
- You want a modern, polished UI that looks great out of the box
- Your team prefers simplicity over feature density
- You already run PostgreSQL and want to reuse it
- You need OpenID Connect (OIDC) for SSO
- You want a lightweight alternative to heavy Meteor or PHP stacks
Docker Compose Deployment
Planka uses PostgreSQL for persistence and provides a straightforward Docker setup:
| |
Deploy it:
| |
The SECRET_KEY should be a random string of at least 64 characters. Generate one with:
| |
Planka’s Strengths
Real-time Collaboration: Every action — moving cards, editing descriptions, adding labels — appears instantly for all connected users via WebSocket connections. There’s no page refresh required.
Clean Card Interface: Planka’s card editor is one of the cleanest in the open-source space. It includes checklists, labels, attachments, task assignments, and due dates without feeling cluttered.
OIDC Integration: Planka supports OpenID Connect out ofkeycloak, making it straightforward to integrate with Keycloak, Authentik, Authelia, or any other OIDC provider.
Focalboard — The Spreadsheet Meets Kanban Hybrid
Focalboard originated as Mattermost’s answer to Trello and Notion’s database views. Its defining feature is the ability to switch between multiple views of the same data: Kanban board, table/spreadsheet, gallery, and calendar. This makes it uniquely versatile for teams that need more than just a Kanban view.
When to Choose Focalboard
- You need multiple views of the same data (Kanban + table + calendar)
- Your team already uses Mattermost and wants integrated project management
- You want spreadsheet-style data entry alongside visual boards
- You prefer Go-based applications for better performance
- You need a Notion-like database experience
Docker Compose Deployment
Focalboard can run standalone or integrated with Mattermost. For standalone use:
| |
For a more robust setup with PostgreSQL:
| |
Create a config.json for the PostgreSQL setup:
| |
Deploy with:
| |
Default credentials are admin / admin. Change the password immediately after first login.
Focalboard’s Multi-View System
Kanban View: The classic column-based board with drag-and-drop cards. Supports grouping by any property field.
Table View: A spreadsheet-like grid where you can add, sort, and filter rows. Each column can be text, number, date, select, multi-select, person, checkbox, URL, email, phone, or created/updated time. This is Focalboard’s killer feature — no other tool in this comparison offers it.
Gallery View: A card-based grid view useful for visual browsing of boards with cover images attached to cards.
Calendar View: Shows cards on a monthly calendar based on their date properties. Useful for deadline-driven projects.
Reverse Proxy Setup for All Options
Regardless of which Kanban board you choose, putting it behind a reverse proxy with HTTPS is essential for production use. Here’s a universal Nginx configuration that works with all four options:
| |
Obtain the SSL certificate with Certbot:
| |
Backup Strategy
A self-hosted service is only as reliable as its backup strategy. Here’s how to back up each tool:
Kanboard:
| |
WeKan:
| |
Planka:
| |
Focalboard:
| |
Automate backups with a cron job:
| |
Recommendation Summary
| Scenario | Best Choice | Why |
|---|---|---|
| Minimal server resources | Kanboard | Runs on 50 MB RAM, works on a Raspberry Pi |
| Trello replacement | WeKan | Closest feature parity and UX to Trello |
| Modern UI + simplicity | Planka | Clean React interface, easy setup |
| Multiple data views | Focalboard | Kanban + table + calendar + gallery |
| Enterprise SSO | Kanboard or WeKan | Full LDAP, OAuth2, and SAML support |
| Built-in time tracking | Kanboard or Planka | No plugins or workarounds needed |
| Automation and WIP limits | Kanboard | Most powerful built-in automation engine |
| Mattermost integration | Focalboard | Native Mattermost authentication and linking |
Each of these tools is production-ready and actively maintained. Your choice depends on whether you prioritize feature depth (Kanboard), Trello familiarity (WeKan), modern simplicity (Planka), or multi-view flexibility (Focalboard). All four can be deployed in under five minutes with Docker and run reliably behind a reverse proxy with HTTPS.
Frequently Asked Questions (FAQ)
Which one should I choose in 2026?
The best choice depends on your specific requirements:
- For beginners: Start with the simplest option that covers your core use case
- For production: Choose the solution with the most active community and documentation
- For teams: Look for collaboration features and user management
- For privacy: Prefer fully open-source, self-hosted options with no telemetry
Refer to the comparison table above for detailed feature breakdowns.
Can I migrate between these tools?
Most tools support data import/export. Always:
- Backup your current data
- Test the migration on a staging environment
- Check official migration guides in the documentation
Are there free versions available?
All tools in this guide offer free, open-source editions. Some also provide paid plans with additional features, priority support, or managed hosting.
How do I get started?
- Review the comparison table to identify your requirements
- Visit the official documentation (links provided above)
- Start with a Docker Compose setup for easy testing
- Join the community forums for troubleshooting