Skip to content
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

Fixed example volume #148

Open
wants to merge 1 commit into
base: 2024.9.x
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ docker-compose.yml
. *Create a new directory for the extension*; we'll name it `corredor`, but the name doesn't matter.
. Somehow *transport the extension source files* into the newly created directory (see below sections for tips).
. Add a *new volume* to the `docker-compose.yaml` file that will *contain the extension*.
For example, under the `corredor` service, `volumes: [ "./corredor:/corredor/test-extension", ...other volumes you might have... ]`
For example, under the `corredor` service, `volumes: [ "./corredor/test-extension:/corredor/test-extension", ...other volumes you might have... ]`
. Edit the `.env` (`CORREDOR_EXT_SEARCH_PATHS` variable) file to *register the new extension*.
For example `CORREDOR_EXT_SEARCH_PATHS=/extensions:/extensions/*:/corredor/test-extension`.
. *Reload the configurations* (`docker-compose up -d`).
Expand Down