Try   HackMD

HAPI JPA 설치

1. Docker

Docker 설치

  • 도커 웹사이트에 접속합니다.
  • 사용 중인 운영체제에 맞는 도커 데스크톱 버전을 선택합니다.
    다운로드가 완료되면, 도커에서 제공하는 설치 가이드에 따라 설치를 진행합니다.

Image Not Showing Possible Reasons
  • The image was uploaded to a note which you don't have access to
  • The note which the image was originally uploaded to has been deleted
Learn More →

Starter 설치

Image Not Showing Possible Reasons
  • The image was uploaded to a note which you don't have access to
  • The note which the image was originally uploaded to has been deleted
Learn More →

  • hapi-fhir-jpaserver의 각 태그/발매 버전은 도커 이미지로 빌드되어 도커 허브에 게시된다. 도커에서 게시된 도커 이미지를 실행하려면허브:
docker pull hapiproject/hapi:latest
docker run -p 8080:8080 hapiproject/hapi:latest
  • 이렇게 하면 컨테이너의 포트 8080을 호스트의 포트 8080에 매핑하는 기본 구성으로 도커 이미지가 실행됩니다. 실행이 완료되면 브라우저에서 http://localhost:8080/에 액세스하여 HAPI FHIR 서버의 UI에 액세스하거나 http://localhost:8080/fhir/를 REST 요청의 기본 URL로 사용할 수 있습니다.
  • 매핑된 포트를 변경하는 경우 HAPI에서 사용하는 구성을 hapi.fhir.tester 속성/값이 올바른지 변경해야 합니다
  • 웹 브라우저에 결과 화면이 아래와 같이 표시되면 성공적으로 HAPI 서버가 설치되었음 알 수 있다.

Image Not Showing Possible Reasons
  • The image was uploaded to a note which you don't have access to
  • The note which the image was originally uploaded to has been deleted
Learn More →