こんにちは、皆様。
最近、Docker を通じて Discourse の本番環境をインストールし、以下のガイドに従っていくつかのプラグインのインストールを試みました:Install plugins on a self-hosted site
containers/app.yml にプラグインを追加しました。
hooks:
after_code:
- exec:
cd: $home/plugins
cmd:
- git clone https://github.com/discourse/docker_manager.git
- git clone https://github.com/discourse/discourse-brand-header.git
- git clone https://github.com/pmusaraj/discourse-dark-mode.git
docker_manager プラグインは初期インストール時に読み込まれました。しかし、私が追加した残りの 2 つのプラグイン(discourse-brand-header と discourse-dark-mode)は、連続したビルドの後にも表示されません。ビルド自体にはエラーは含まれていません。Docker コンテナ内の「plugins」ディレクトリにはプラグインが表示されますが、Discourse の管理画面や設定の「プラグイン」セクションには表示されません。何か見落としているのでしょうか?