./launcher rebuild app コマンドが見つかりません

Web UI 経由でのアップグレードは、最新イメージを実行するまで無効化されています。

そのためには、SSH を使用してサーバーにログインし、以下を実行してください:

    cd /var/discourse
    git pull
    ./launcher rebuild app

ダッシュボードから更新を試みると、上記の画面が表示されます。

私のインストール先は var/www/discourse のようです。

discourse フォルダ内で git pull は実行しましたが、アプリを適切に再構築する方法がわかりません。これは Docker インストールです。ご助言をいただければ幸いです。よろしくお願いいたします。

「いいね!」 1

Can you share the exact commands you’re running, and the output you’re seeing (feel free to redact IP addresses/hostnames if you prefer)? /var/www/discourse sounds like you’re inside the docker container, rather that on your server.

You should be doing something like:

ssh user@forum.example.com
cd /var/discourse
git pull
sudo ./launcher rebuild app
「いいね!」 4

You’re somehow connecting inside the container. You should probably connect to port 22 and maybe you’re connecting to port 2222; older installations had an ssh port exposed for the container.

「いいね!」 1

I’m using Vultr and I just log into my account and open the console window. My command line shows root@vultr-app. is their a way to log out of the app?

「いいね!」 1

I think i’m there I used an exit command now my folder structure looks right. Update is now rebuilding thanks for the help.

「いいね!」 5

Aha! So apparently it leaves the console running and you forgot that you’d entered the container (with ./launcher enter app).

「いいね!」 1

Yes that’s exactly what happened

C Robert Christensen (Bob)

「いいね!」 3