From b8dd70f2c83511b37cfa3d07ccfc03906fbdcfff Mon Sep 17 00:00:00 2001 From: dannyrb Date: Wed, 1 May 2019 16:38:17 -0400 Subject: [PATCH] Some comments --- docker/README.md | 25 ++++++++++++++++++------- 1 file changed, 18 insertions(+), 7 deletions(-) diff --git a/docker/README.md b/docker/README.md index 438fd9dd0..260bd7d57 100644 --- a/docker/README.md +++ b/docker/README.md @@ -1,42 +1,53 @@ # 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 +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](http://localhost) ## Local Orthanc -#### build + +### Build `$ docker-compose -f docker-compose-orthanc.yml build` -#### run +### 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](http://localhost) -**remember that you have to access orthanc application and include your studies there** +**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](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 +**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** \ No newline at end of file +**make sure that your Docker network name is docker_dcm4chee_default or change +it to the right one**