[Docker] MedDream DICOM Viewer for Orthanc PACS server

MedDream DICOM Viewer for Orthanc PACS server

The MedDream DICOM Viewer integrated into Orthanc DICOM archive.

MedDream HTML5 Zero-footprint DICOM Viewer which is vendor neutral and ready to be integrated into PACS, HIS/RIS/EHR/EMR, Telemedicine, Patient Portals, National Systems, CAD and AI algorithms. MedDream Universal Enterprise Viewer can be installed on premises, in any virtual environment or on cloud.

MedDream is designed to aid medical professionals in day-to-day decision-making process. The Viewer is CE certified and FDA cleared for diagnostic use as a Class 2 medical device. MedDream is a cost effective certified solution perfect for software vendors, integrators, OEM‘s and national system providers.

Installation of MedDream DICOM Viewer with Orthanc PACS server

Installing orthanc DICOM archive and viewer in docker environment:

docker network create orthanc
docker run --restart=always --network=orthanc --name orthanc -v /mnt/orthanc-db/:/var/lib/orthanc/db/ -itd -p 4242:4242 -p 8042:8042 jodogne/orthanc-plugins:latest
docker run --restart=always --network=orthanc --name meddream -itd -p 80:80 -e integration=study meddream/orthanc-dicom-viewer:7.5.3

Sending sample DICOM study to orthanc PACS:

docker run --rm --network=orthanc meddream/dicom-studies:latest storescu -cSENDTOPACS@orthanc:4242 .

Login to MedDream DICOM Viewer

MedDream DICOM Viewer Login Form:

http://127.0.0.1/login.html

or just

http://127.0.0.1/

Default Login username and password:
User: demo
Password: demo

Note: Please select "Any" date in MedDeam Study Search window to see all uploaded DICOM studies.

Integration into HIS

MedDream can be integrated into Healtcare Information systems: Hospital information system (HIS), Radiology information system (RIS), PACS server / PACS syste, Vendor Neutral Archive (VNA), Electronic health record (EHR) or Electronic medical record (EMR), National eHealth system or e-Health project, National portal or Patients portal, Telemedicine service or Telemedicine collaboration, DICOM Routing, Medical Imaging Cloud or other DICOM and medical imaging services.

Integration by Study UID in URL parameters

Integration example by Study UID in URL parameters:

http://127.0.0.1/?study={studyUID}

URL integration of the DICOM study sample:

"http://127.0.0.1/?study=1.2.826.0.1.3680043.8.1055.1.20161012115812848.450575715.8637545"

Viewer will open study by specified Study UID.

Installing orthanc DICOM archive, MedDream DICOM viewer, information system integration example and sample studies:

docker network create orthanc;
docker run --restart=always --network=orthanc --name orthanc -itd -p 4242:4242 -p 8042:8042 jodogne/orthanc-plugins:latest
docker run --restart=always --network=orthanc --name meddream -itd -p 80:80 -e integration=study meddream/orthanc-dicom-viewer:7.5.3
docker run --restart=always --network=orthanc -d -p 81:80 --name his -e integration=study meddream/dicom-viewer-integration:0.5
docker run --rm --network=orthanc meddream/dicom-studies:latest storescu -cSENDTOPACS@orthanc:4242 .

Information system integration example (integration Java Script code) will be available by

http://127.0.0.1:81/

You can open viewer by clicking on "Interrogation by Study UID" link.

Security Warning: You need to use additional authentication or authorization methods if you need to prevent not authorized access to the link.

Integration by Secure Token in URL parameters

Access permissions and resources can be specified and passed by using secure token based integration. MedDream token service (https://hub.docker.com/r/meddream/token-service) can be used for token generation and validation.

Installing orthanc DICOM archive, MedDream DICOM viewer, information system integration example and sample studies:

docker network create orthanc;
docker run --restart=always --network=orthanc --name orthanc -itd -p 4242:4242 -p 8042:8042 jodogne/orthanc-plugins:latest
docker run --restart=always --network=orthanc --name meddream -itd -p 80:80 -e integration=token meddream/orthanc-dicom-viewer:7.5.3
docker run --restart=always --network=orthanc --name meddream-token-service -itd -p 8088 meddream/token-service:0.6
docker run --restart=always --network=orthanc -d -p 81:80 --name his -e integration=token meddream/dicom-viewer-integration:0.5
docker run --rm --network=orthanc meddream/dicom-studies:latest storescu -cSENDTOPACS@orthanc:4242 .

Information system integration example (integration Java Script code) will be available by

http://127.0.0.1:8080/

You can open viewer by clicking on "Integration by Secure Token" link.

Please contact info@softneta.com" style="box-sizing: border-box; background-color: transparent; color: rgb(15, 108, 158); overflow-wrap: break-word; text-decoration-line: none;">info@softneta.com for detailed Integration Instruction or other integration options (3'rd party or integrating vendor's token generation and validation service can be used).

Configuration of Orthanc Viewer

Custom Viewer configuration (application.properties and system.json) can passed by using -v parameter:

docker run --restart=always --network=orthanc --name meddream -itd -p 80:80 -v /home/meddream/license:/opt/meddream/license -v /home/meddream/application.properties:/opt/meddream/application.properties -v /home/meddream/system.json:/opt/meddream/sys/settings/system.json meddream/orthanc-dicom-viewer:7.5.3

Default application.properties file (for -v /home/meddream/application.properties):

com.softneta.license.licenseFileLocation=./license

server.port=80
logging.file.name=mdjavacore
logging.level.com.softneta=INFO

spring.profiles.include=auth-inmemory,auth-his
authentication.inmemory.users[0].userName=demo
authentication.inmemory.users[0].password=demo
authorization.users[0].userName=demo
authorization.users[0].role=SEARCH,EXPORT_ISO,EXPORT_ARCH,FORWARD,REPORT_VIEW,REPORT_UPLOAD,PATIENT_HISTORY,UPLOAD_DICOM_LIBRARY,3D_RENDERING,ADMIN,DOCUMENT_VIEW
authentication.his.valid-his-params=study
authorization.defaultHisPermissions=EXPORT_ISO,EXPORT_ARCH,FORWARD,REPORT_VIEW,REPORT_UPLOAD,PATIENT_HISTORY,UPLOAD_DICOM_LIBRARY,3D_RENDERING,DOCUMENT_VIEW
authorization.defaultLoginPermissions=SEARCH,EXPORT_ISO,EXPORT_ARCH,FORWARD,REPORT_VIEW,REPORT_UPLOAD,PATIENT_HISTORY,UPLOAD_DICOM_LIBRARY,3D_RENDERING,DOCUMENT_VIEW

com.softneta.meddream.loginEnabled=true
features.search=true

com.softneta.meddream.pacs.configurations[0].type=Orthanc
com.softneta.meddream.pacs.configurations[0].id=Orthanc
com.softneta.meddream.pacs.configurations[0].baseUrl=http://orthanc:8042
com.softneta.meddream.pacs.configurations[0].username=orthanc
com.softneta.meddream.pacs.configurations[0].password=orthanc
#com.softneta.meddream.pacs.configurations[0].searchApiEnabled=true
#com.softneta.meddream.pacs.configurations[0].imageApiEnabled=true
#com.softneta.meddream.pacs.configurations[0].dicomCacheDirectory={Path to DICOM files}
#com.softneta.meddream.pacs.configurations[0].storeScuAet={Remote AE Title for uploading annotations and KOs}
#com.softneta.meddream.pacs.configurations[0].storeScuIp={IP of remote AE for uploading annotations and KOs}
#com.softneta.meddream.pacs.configurations[0].storeScuPort={Port of remote AE for uploading annotations and KOs}

Default system.json (for -v /home/meddream/system.json):

{
  "disableMultiFrameVideoAutoLoad": false,
  "threeDimensionServiceIntegration": {
    "serverIP": null,
    "port": null,
    "protocol": null,
    "pathPrefix": null,
    "pathPrefixReplaceTo": null
  },
  "features": {
    "patientHistory": false,
    "keyObjectAndPresentationStateQuickSave": true,
    "keyObjects": true,
    "presentationState": true,
    "searchSettings": true,
    "viewerSettings": true,
    "reportSettings": true,
    "hangingProtocolsSettings": true,
    "export": true,
    "archive": true,
    "search": true,
    "reports": false,
    "liveShare": false
  },
  "blackListedSopClasses": [],
  "forwardPacs": [{
            "storeScpIp": "127.0.0.1",
            "storeScpPort": "104",
            "storeScpAet": "PACS",
            "description": "An example destination for Forward"
        }],
  "languages": ["en"],
  "dicomLibraryConfiguration": {
    "dicomLibrarySender": null,
    "dicomLibrarySubject": null
  },
  "asynchronousStudyLoading": false,
  "formatIntegrationLinkInViewer": false
}

Stop

To stop working containers:

docker stop his
docker stop meddream
docker stop meddream-token-service
docker stop orthanc

To remove containers:

docker rm his
docker rm meddream
docker rm meddream-token-service
docker rm orthanc

License

MedDream DICOM Viewer licensed under the Commercial License. Please contact info@softneta.com" style="box-sizing: border-box; background-color: transparent; color: rgb(15, 108, 158); overflow-wrap: break-word; text-decoration-line: none;">info@softneta.com to get TRIAL license.

License can be registered by using License Serial number. License folder must be mounted by using -v /home/meddream/license:/opt/meddream/license. In application.properties must be:

com.softneta.license.licenseFileLocation=./license
0
0
이 글을 페이스북으로 퍼가기 이 글을 트위터로 퍼가기 이 글을 카카오스토리로 퍼가기 이 글을 밴드로 퍼가기
captcha
자동등록방지 숫자입력

웹개발

번호 제목 글쓴이 날짜 조회수
62 [Linux] CentOS postfix 메일서버 설치 및 설정(sendmail 설정) 최고관리자 12-23 1,366
61 [Ubuntu] 인터넷 연결이 안될 때 최고관리자 12-07 1,185
60 [Apache SSL] Ubuntu 인증서(전자서명) 최고관리자 11-24 1,287
59 [Ubuntu] ssl 임시 인증서 준비 및 발급받기 최고관리자 11-23 1,665
58 [Ubuntu] apache2 환경설정 생성기 최고관리자 11-23 2,888
57 [Ubuntu] apache2 설치 최고관리자 11-23 1,187
56 [vi 편집기] 단축키 최고관리자 11-23 1,112
55 [유용한 블로그] ^^.^^ 최고관리자 11-19 1,121
54 [JS] TimelineJS - 시간의 흐름을 네비게이션화 최고관리자 11-19 1,190
53 [JS] 스크롤을 감지하여 사이트의 헤더를 보이거나 숨기기 최고관리자 11-19 1,321
52 [Linux] NAS Mount 최고관리자 11-12 1,133
51 [React] React활용 최고관리자 11-10 1,169
50 [PHP] exec 실행에 대한 응답코드 최고관리자 11-02 1,517
49 [Linux] Shell Script 최고관리자 10-26 1,424
48 [폰트] 폰트 찾기 사이트 최고관리자 10-21 1,230
47 [통신] Socket packet test Program 최고관리자 10-20 1,713
46 [통신] 맥용 Socket Test Program 최고관리자 10-20 1,509
45 [통신] Mac에서 TCP Socket통신 테스트 하기 최고관리자 10-20 2,777
44 [NginX] 504 Gateway Time-out 에러와 해결방법 +1 최고관리자 10-16 24,436
43 [NginX] 설정 최고관리자 10-13 1,452