...
The extension JAR file is mounted in the Bahmni Reports Docker image container using a Docker volume in the docker-compose file. This ensures that the extension class is available to the image. The following line needs to be uncommented in the reports service for the extension to get activated.
Code Block |
---|
reports: image: bahmni/reports:${REPORTS_IMAGE_TAG:?} ... volumes: - "${REPORTS_EXTENSIONS_CONFIG_PATH:?}../snomed-resources/icd10-extensions-1.0.0-SNAPSHOT.jar:/var/run/bahmni-reports/bahmni-reports/WEB-INF/lib/icd10-extensions-1.0.0-SNAPSHOT.jar:ro" |
After uncommenting, update reports container by running docker compose up -d reports
ICD-10 Extension Repository
...