feat: enhance plugin management with external configuration support #157
Merged
Yehonal merged 5 commits intoazerothcore:masterfrom Jul 8, 2025
Merged
Conversation
… handling in init script
Helias
approved these changes
Jul 7, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces a flexible plugin configuration system for WordPress installations using Docker, along with updates to the initialization scripts and documentation. The changes enhance plugin management by supporting multiple plugin sources, external configurations, and local file mounting.
Plugin Management Enhancements:
apps/init/init.lib.sh: Updated theinstall_and_activate_pluginfunction to support plugin installation from URLs and local file paths, in addition to WordPress repository slugs.apps/init/init.sh: Added support for loading external plugin configurations from a mounted directory (/conf/init) and updated the format for specifying plugins to install and activate. [1] [2] [3]Docker Configuration Updates:
docker-compose.yml: Added new volume mounts for external plugin configurations (/conf/init) and local plugin zip files (/data/plugins). [1] [2]Documentation Improvements:
docs/README.md: Documented the new plugin configuration system, including details on supported plugin sources, configuration file format, and default plugins.Miscellaneous:
conf/init/.gitkeep: Added a placeholder file to indicate the purpose of the/conf/initdirectory for external plugin configurations.