1
0
Fork 0
1Panel-Appstore/discourse
renovate[bot] 482f33d9ec chore(deps): update bitnami/discourse docker tag to v3.4.2 (#3616)
* chore(deps): update bitnami/discourse docker tag to v3.4.2

* Update app version [skip ci]

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: github-action update-app-version <githubaction@githubaction.com>
2025-04-04 21:56:22 +08:00
..
3.4.2 chore(deps): update bitnami/discourse docker tag to v3.4.2 (#3616) 2025-04-04 21:56:22 +08:00
README.md feat: 优化 Discourse 安装包 2024-08-01 18:24:11 +08:00
README_en.md Add various translations for i18n apps (#3475) 2025-03-25 16:59:32 +08:00
data.yml Add various translations for i18n apps (#3475) 2025-03-25 16:59:32 +08:00
logo.png feat: 优化 Discourse 安装包 2024-08-01 18:24:11 +08:00

README_en.md

Notes

  • Accessing via port will cause the console to not display. Please modify it to use domain access.

Configuration

Set Language

Access the URI /admin/site_settings/category/required in your browser and set default locale to Simplified Chinese.

Configure SMTP

Manually edit docker-compose during application installation to modify SMTP-related configurations.

Install Plugins

Go to the Containers page, find the Discourse application, click the Terminal button in the right action column, and execute the following commands in the container terminal:

cd /opt/bitnami/discourse
# Install plugin, replace PLUGIN_REPO_URL with the plugin URL
sudo RAILS_ENV=production bundle exec rake plugin:install repo=PLUGIN_REPO_URL
# Precompile new assets for plugin usage
sudo RAILS_ENV=production bundle exec rake assets:precompile

Uninstall Plugins

Go to the Containers page, find the Discourse application, click the Terminal button in the right action column, and execute the following commands in the container terminal:

cd /opt/bitnami/discourse/plugins
# Delete plugin directory, replace PLUGIN-DIR with the plugin directory
rm -rf PLUGIN-DIR
# Precompile new assets
sudo RAILS_ENV=production bundle exec rake assets:precompile