MirrorNest
← すべてのガイド

Taiga

Taiga is an agile project management tool built around Scrum and Kanban boards, officially packaged as taiga-docker for self-hosted deployment.

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

    git clone https://github.com/taigaio/taiga-docker.git
    cd taiga-docker
    git checkout stable

    Taiga's docs specify the stable branch for production and main for development.

  2. 2Configure environment variables

    Edit the .env file to set your domain, scheme (http/https), database credentials, a unique secret key, and email/SMTP settings.

  3. 3Launch Taiga

    ./launch-taiga.sh
    docker compose up -d
  4. 4Create an admin user

    ./taiga-manage.sh createsuperuser
  5. 5Access Taiga

    For local testing, open http://localhost:9000. For a real server, configure the bundled nginx service and your domain/HTTPS settings in .env first.