Add quick install command for Implementation Guide (#859)

Added a one-liner command for installing an Implementation Guide into HAPI.
This commit is contained in:
Jens Kristian Villadsen
2025-09-26 19:10:22 +02:00
committed by GitHub
parent 9576cfa9b5
commit d29b9f80af

View File

@@ -65,6 +65,12 @@ docker run -p 8090:8080 -e "--spring.config.location=classpath:/another.applicat
``` ```
Here, the configuration file (*another.application.yaml*) is part of the compiled set of resources. Here, the configuration file (*another.application.yaml*) is part of the compiled set of resources.
### One-liner for quickly getting an Implementation Guide installed into HAPI
```
docker run -p 8080:8080 -e "hapi.fhir.implementationguides.someIg.name=com.org.something" -e "hapi.fhir.implementationguides.someIg.version=1.2.3" -e "hapi.fhir.implementationguides.someIg.packageUrl=https://build.fhir.org/ig/yourOrg/yourIg/package.tgz" -e "hapi.fhir.implementationguides.someIg.installMode=STORE_AND_INSTALL" hapiproject/hapi:latest
```
### Example using ``docker-compose.yml`` for docker-compose ### Example using ``docker-compose.yml`` for docker-compose
```yaml ```yaml