プラグインがインストールされていません

こんにちは!

プラグインをインストールしようとしていますが、アプリを再構築しても認識されていないようです。
アプリは正常にコンパイルされますが、プラグインはまったく機能しません。

自分のサーバーにデフォルトのDiscourseをインストールしています。

確認すべき最も明白なことは何ですか?

ありがとうございます

「いいね!」 1

プラグインは /admin/plugins に表示されていますか?

/admin/plugins
「いいね!」 1

どのプラグインをインストールしようとしているのかも分かると役立ちます。

「いいね!」 3

そして、app.yml でプラグインを表示することもできます。

「いいね!」 2

管理画面に表示されません。

こちらは app.yml です。

## Dockerコンテナはステートレスです。すべてのデータは/sharedに保存されます。
volumes:
  - volume:
      host: /var/discourse/shared/standalone
      guest: /shared
  - volume:
      host: /var/discourse/shared/standalone/log/var-log
      guest: /var/log

## プラグインはここに配置します
      ## 詳細については、https://meta.discourse.org/t/19157 を参照してください。
      hooks:
        after_code:
          - exec:
              cd: $home/plugins
              cmd:
                - git clone https://github.com/discourse/docker_manager.git
                - git clone https://github.com/discourse/discourse-spoiler-alert.git
                - git clone https://github.com/discourse/discourse-animated-avatars.git
                - git clone https://github.com/discourse/discourse-whos-online.git
                - git clone https://github.com/discourse/discourse-data-explorer.git
                - git clone https://github.com/discourse/discourse-bbcode.git
                - git clone https://github.com/discourse/discourse-signatures.git
                - git clone https://github.com/discourse/discourse-reactions.git
                - git clone https://github.com/paviliondev/discourse-legal-tools.git
                - git clone https://github.com/theCrius/discourse-ngi-emojis.git

## ビルド後に実行するカスタムコマンド
run:
  - exec: echo "カスタムコマンドの開始"
  ## 最初の登録の「差出人」メールアドレスを設定したい場合は、コメントを解除して変更してください。
  ## 最初のサインアップメールを受信したら、行を再コメントアウトしてください。一度だけ実行する必要があります。
  #- exec: rails r "SiteSetting.notification_email='info@unconfigured.discourse.org'"
  - exec: echo "カスタムコマンドの終了"

それは不正な形式の app.yml です。

まず、hooks の前にはスペースがあってはいけません!(volumes のサブセクションではありません)
問題は、その上のコメント行から始まるようです。

「いいね!」 2

わかりました、タブに敏感だとは知りませんでした。ありがとうございます!

「いいね!」 1

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.