Skip to content

Commit

Permalink
Merge pull request #76 from jembi/add-hapi-fhir-service
Browse files Browse the repository at this point in the history
Add hapi-fhir service to docker-compose.yml
  • Loading branch information
medchedli committed Sep 20, 2024
2 parents 21452db + ec0f8ec commit 0271901
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,30 @@ services:
networks:
- smart-health-links-portal-network

hapi-fhir:
image: jembi/hapi:v7.0.3-wget
ports:
- 3447:8080
networks:
- smart-health-links-portal-network
volumes:
- hapi_fhir_data:/var/lib/hapi-fhir
environment:
- hapi.fhir.allow_external_references=true
- hapi.fhir.bulk_export_enabled=true
- hapi.fhir.ips_enabled=true
healthcheck:
test: ['CMD', 'curl', '-f', 'http://localhost:8080']
interval: 30s
timeout: 10s
retries: 3

volumes:
postgres_data:
driver: local
hapi_fhir_data:
driver: local

networks:
smart-health-links-portal-network:
driver: bridge
driver: bridge

0 comments on commit 0271901

Please sign in to comment.