← Todos os guias
Wekan
Wekan is an open-source, Trello-style kanban board, distributed as an official Docker image alongside its MongoDB-compatible FerretDB backend.
Este guia foi elaborado a partir da documentação oficial do Wekan, ligada acima — verifique sempre lá os nomes exatos dos pacotes/versões antes de executar estes comandos num servidor de produção, uma vez que as versões da distribuição e do projeto mudam com o 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.