-
Notifications
You must be signed in to change notification settings - Fork 6
Add OIE Plugin Guide documentation #5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Closes OpenIntegrationEngine/engine#238 - Add plugin installation guide - Cover UI and manual install methods - Include Docker container install options - Link to plugin development resources
tonygermano
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just a few comments related to docker. Otherwise, this looks great.
|
|
||
| #### Option 1: Volume Mount (Recommended) | ||
|
|
||
| Mount a host directory containing plugins to the container's extensions directory: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| Mount a host directory containing plugins to the container's extensions directory: | |
| Mount a host directory containing plugin zip files to the container's `custom-extensions` directory. The entrypoint script will unzip and install them to the `extensions` directory prior to launching the server: |
|
|
||
| ```bash | ||
| docker run -d \ | ||
| -v /path/to/local/extensions:/opt/oie/extensions \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| -v /path/to/local/extensions:/opt/oie/extensions \ | |
| -v /path/to/local/custom-extensions:/opt/engine/custom-extensions \ |
| oie: | ||
| image: openintegrationengine/engine:latest | ||
| volumes: | ||
| - ./extensions:/opt/oie/extensions |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| - ./extensions:/opt/oie/extensions | |
| - ./custom-extensions:/opt/engine/custom-extensions |
Closes OpenIntegrationEngine/engine#238