LoginSignup
0
0

プランニングポーカー Thunderdome をdocker-composeで構築

Posted at

環境作成(Windowsの場合)

インストールしていない場合

  1. WSLのインストール

  2. Docker Desktop for Windowsのインストール

Thunderdome planning-poker の設定

イントラネット上でThunderdomeサーバーを起動します。

  1. WSL(Linux用Windowsサブシステム)を開く

  2. GitHubリポジトリのクローン

    git clone https://github.com/StevenWeathers/thunderdome-planning-poker.git
    cd thunderdome-planning-poker
    
  3. config.ymlの作成

    http:
      domain: thunderdome.dev
    db:
      host: localhost
      port: 5432
      user: thor
      pass: odinson
      name: thunderdome
    

    ※http domainは無くてもよさそう

  4. ポート開放
    ファイアウォールの8080ポートを開放しておきます。

  5. Docker Compose の実行

    docker-compose up -d
    
  6. ブラウザでアクセス

    ブラウザで http://(ホスト名もしくはIPアドレス):8080/ を開くと起動するはずです。

    image.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0