MirrorNest
← すべてのガイド

Wekan

Wekan is an open-source, Trello-style kanban board, distributed as an official Docker image alongside its MongoDB-compatible FerretDB backend.

対象: Any Docker hostProject Management公式ホームページ ↗公式ドキュメント ↗
このガイドは上記リンク先にあるWekan公式ドキュメントをもとに作成されています。ディストリビューションやプロジェクトのバージョンは時間とともに変わるため、本番サーバーでこれらのコマンドを実行する前に、必ず公式ドキュメントで正確なパッケージ名・バージョン名を確認してください。
  1. 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.yml
  2. 2Edit 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.

  3. 3Start Wekan

    docker compose up -d
  4. 4Access 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.