Plugin Installation Steps
Once your container is logged into, the steps below will install a plugin (which I found on the Bitnami website):
Open the discourse install directory:
cd /opt/bitnami/discourse
install the plugin from the GItHub Url:
RAILS_ENV=production bundle exec rake plugin:install repo=PLUGIN_REPO_URL
Precompile new plugin assets:
RAILS_ENV=production bundle exec rake assets:precompile
Finally, run the database migrations - this is needed for plugins that require database changes, such as Discourse Reactions plugin.
RAILS_ENV=production bundle exec rake db:migrate