ohif-viewer/.docker
Alireza 2d7721cb58
fix(keyCloak): fix openresty keycloak deployment recipe (#3655)
Co-authored-by: Joe Boccanfuso <joe.boccanfuso@radicalimaging.com>
2023-09-19 10:11:32 -04:00
..
Viewer-v3.x feat(Docker): Facilitate the ability to run the OHIF docker image over SSL (#3511) 2023-07-05 09:03:43 -04:00
README.md feat: Add DICOM SEG support and MPR, referenceLines and StackSync and more (#3015) 2022-11-16 14:19:52 -05:00

Docker compose files

This folder contains docker-compose files used to spin up OHIF-Viewer with different options such as locally or with any PAS you desire to

Public Server

Local Orthanc

Build

$ docker-compose -f docker-compose-orthanc.yml build

Run

Starts containers and leaves them running in the background.

$ docker-compose -f docker-compose-orthanc.yml up -d

then, access the application at http://localhost

remember that you have to access orthanc application and include your studies there

Local Dcm4chee

build

$ docker-compose -f docker-compose-dcm4chee.yml build

run

$ docker-compose -f docker-compose-dcm4chee.yml up -d

then, access the application at http://localhost

remember that you have to access dcm4chee application and include your studies there You can use the following command to import your studies into dcm4che

$ docker run -v {YOUR_STUDY_FOLDER}:/tmp --rm --network=docker_dcm4che_default dcm4che/dcm4che-tools:5.14.0 storescu -cDCM4CHEE@arc:11112 /tmp

make sure that your Docker network name is docker_dcm4chee_default or change it to the right one