From d29b9f80af75e0edf5df599131f86cdd8c1a7fac Mon Sep 17 00:00:00 2001 From: Jens Kristian Villadsen Date: Fri, 26 Sep 2025 19:10:22 +0200 Subject: [PATCH] Add quick install command for Implementation Guide (#859) Added a one-liner command for installing an Implementation Guide into HAPI. --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 711450e..3a0cef4 100644 --- a/README.md +++ b/README.md @@ -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. +### 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 ```yaml