← Alle Anleitungen
Wekan
Wekan is an open-source, Trello-style kanban board, distributed as an official Docker image alongside its MongoDB-compatible FerretDB backend.
Diese Anleitung basiert auf der offiziellen Dokumentation von Wekan, oben verlinkt — überprüfe dort immer die genauen Paket-/Versionsnamen, bevor du diese Befehle auf einem Produktionsserver ausführst, da sich Distributions- und Projektversionen mit der Zeit ändern.
1Download the official docker-compose.yml
The file defines two services: a ferretdb container providing MongoDB-compatible storage over embedded SQLite, and the wekan app container itself.
wget https://raw.githubusercontent.com/wekan/wekan/main/docker-compose.yml2Edit the environment variables
At minimum, set ROOT_URL to the URL you'll access Wekan at, and MAIL_URL/MAIL_FROM if you want outgoing email notifications. MONGO_URL is preconfigured to point at the bundled ferretdb service.
3Start Wekan
docker compose up -d4Access Wekan
Open the ROOT_URL you configured (port 80 by default in the official compose file) and register the first account.
Wekan's wiki recommends at least 4GB RAM for a production server and keeping the deployment updated frequently.