← Tutte le guide
Wekan
Wekan is an open-source, Trello-style kanban board, distributed as an official Docker image alongside its MongoDB-compatible FerretDB backend.
Questa guida è redatta a partire dalla documentazione ufficiale di Wekan, linkata sopra — verifica sempre lì i nomi esatti di pacchetti/versioni prima di eseguire questi comandi su un server di produzione, poiché le versioni della distribuzione e del progetto cambiano nel tempo.
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.