Take control of your project management with a highly customizable, privacy-focused kanban solution. Designed for teams and individuals who value data security, this open-source platform allows you to visually organize work, track progress, and collaborate effectively without compromising sensitive information. By offering a self-hosted option, you maintain absolute ownership over your data while avoiding vendor lock-in.\n\nKey benefits include:\n* Visual Task Management: Create unlimited boards with custom columns to map out your exact workflow.\n* Detailed Task Cards: Track every detail by adding descriptions, due dates, labels, file attachments, and checklists.\n* Advanced Security: Host the software on your own servers for maximum data protection and utilize granular access controls.\n* Open-Source Reliability: Benefit from a transparent, MIT-licensed codebase that is continuously audited.\n\nManage projects of any scale with complete flexibility and security.
services:
wekan-db:
image: mongo:5
container_name: wekan-db
restart: always
command: mongod --oplogSize 128 --replSet rs0 --schemeVersion=1
volumes:
- ./data/db:/data/db
- ./data/dump:/dump
wekan:
image: ghcr.io/wekan/wekan:latest
container_name: wekan
restart: always
ports:
- 8080:8080
environment:
- MONGO_URL=mongodb://wekan-db:27017/wekan
- ROOT_URL=http://localhost:8080
- MAIL_URL=${MAIL_URL}
- WITH_API=true
depends_on:
- wekan-dbMAIL_URL=smtp://user:pass@mailserver.example.com:25/Auto-fetched about 21 hours ago
Auto-fetched about 21 hours ago