This project provides FHIR data and a turnkey FHIR controller for loading seed data used for Lee Informatics lab projects into a locally running FHIR resource server. See GitHub for source.
If using Docker:
docker run -it --rm -p 4204:80 --pull always p3000/asu-cds-data:latestUse the application at: http://localhost:4204, which requires an open FHIR server with authorization disabled. We test and validate against HAPI FHIR in R4 mode. If you need a FHIR resource server, you can run HAPI FHIR like so:
docker run -d --name hapi-r4 -p 8080:8080 -e hapi.fhir.fhir_version=R4 -e spring.main.allow-bean-definition-overriding=true -e hapi.fhir.expunge_enabled=true -e hapi.fhir.allow_multiple_delete=true -e hapi.fhir.bulk_export_enabled=true -e hapi.fhir.bulk_import_enabled=true -e hapi.fhir.enable_index_missing_fields=true -e hapi.fhir.cdshooks.enabled=true -e hapi.fhir.cr.enabled=true hapiproject/hapi:latestTo build your own:
docker buildx build --platform linux/arm64,linux/amd64 -t p3000/asu-cds-data:latest .Provided under the Apache 2.0 license. See LICENSE file for details.