ohif-viewer/docker
2019-05-07 12:35:55 -04:00
..
dcm4che adding dcm4che docker-compose file 2019-04-25 14:21:28 -03:00
nginx-proxy/conf fixing cors issue 2019-04-24 22:23:06 -03:00
OpenResty-Orthanc-Keycloak Fix error/access log mounts 2019-05-07 12:35:55 -04:00
docker-compose-dcm4che.yml updating docker-compose files to adhere new way to deploy 2019-04-30 10:33:47 -03:00
docker-compose-orthanc.yml docker-compose note 2019-05-01 16:37:53 -04:00
docker-compose-publicserver.yml updating docker-compose files to adhere new way to deploy 2019-04-30 10:33:47 -03:00
keycloak.yml Keycloak and authproxy 2019-05-02 12:59:31 -04:00
README.md Some comments 2019-05-01 16:38:17 -04:00

Docker compose files

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

Public Server

build

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

run

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

then, access the application at http://localhost

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