ohif-viewer/docker/README.md

54 lines
1.4 KiB
Markdown
Raw Normal View History

# Docker compose files
2019-05-01 22:38:17 +02:00
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
2019-05-01 22:38:17 +02:00
#### build
`$ docker-compose -f docker-compose-publicserver.yml build`
#### run
2019-05-01 22:38:17 +02:00
`$ docker-compose -f docker-compose-publicserver.yml up -d`
then, access the application at [http://localhost](http://localhost)
2019-04-25 03:27:33 +02:00
## Local Orthanc
2019-05-01 22:38:17 +02:00
### Build
2019-04-25 03:27:33 +02:00
`$ docker-compose -f docker-compose-orthanc.yml build`
2019-05-01 22:38:17 +02:00
### Run
Starts containers and leaves them running in the background.
2019-04-25 03:27:33 +02:00
`$ docker-compose -f docker-compose-orthanc.yml up -d`
then, access the application at [http://localhost](http://localhost)
2019-04-25 19:21:28 +02:00
2019-05-01 22:38:17 +02:00
**remember that you have to access orthanc application and include your studies
there**
2019-04-25 19:21:28 +02:00
2019-04-25 19:47:26 +02:00
## Local Dcm4chee
2019-05-01 22:38:17 +02:00
2019-04-25 19:21:28 +02:00
#### build
2019-04-25 19:47:26 +02:00
`$ docker-compose -f docker-compose-dcm4chee.yml build`
2019-04-25 19:21:28 +02:00
#### run
2019-05-01 22:38:17 +02:00
2019-04-25 19:47:26 +02:00
`$ docker-compose -f docker-compose-dcm4chee.yml up -d`
2019-04-25 19:21:28 +02:00
then, access the application at [http://localhost](http://localhost)
2019-04-25 19:21:28 +02:00
2019-05-01 22:38:17 +02:00
**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
2019-04-25 19:21:28 +02:00
2019-04-25 19:47:26 +02:00
`$ docker run -v {YOUR_STUDY_FOLDER}:/tmp --rm --network=docker_dcm4che_default dcm4che/dcm4che-tools:5.14.0 storescu -cDCM4CHEE@arc:11112 /tmp`
2019-04-25 19:21:28 +02:00
2019-05-01 22:38:17 +02:00
**make sure that your Docker network name is docker_dcm4chee_default or change
it to the right one**