2015-10-13 10:57:37 +02:00
|
|
|
# Viewers
|
2015-11-15 20:37:42 +01:00
|
|
|
This repo contains the OHIF DICOM Viewer and Lesion Tracker, and various shared meteor packages
|
|
|
|
|
|
|
|
|
|
### Demos
|
|
|
|
|
[OHIF viewer](http://viewer.ohif.org/) - A prototype general-purpose radiology viewer with a variety of tools exposed.
|
|
|
|
|
[Lesiontracker](http://lesiontracker.ohif.org/) - a prototype viewer focused on oncology metrics.
|
2015-10-30 12:21:59 +01:00
|
|
|
|
2015-11-03 22:19:02 +01:00
|
|
|
Community
|
|
|
|
|
---------
|
|
|
|
|
|
|
|
|
|
Have questions? Try posting in the [OHIF forum](http://forum.ohif.org/).
|
2015-10-30 12:21:59 +01:00
|
|
|
|
|
|
|
|
### Docker usage
|
|
|
|
|
#### Temporary data storage
|
2015-11-03 16:49:05 +01:00
|
|
|
````
|
2015-10-30 12:21:59 +01:00
|
|
|
docker run --rm -p 4242:4242 -p 8042:8042 jodogne/orthanc-plugins
|
2015-11-03 16:49:05 +01:00
|
|
|
````
|
2015-10-30 12:21:59 +01:00
|
|
|
|
|
|
|
|
#### Persistent data storage
|
|
|
|
|
1. Create a persistant data volume for Orthanc to use
|
2015-11-03 16:49:05 +01:00
|
|
|
|
2015-11-12 15:29:58 +01:00
|
|
|
````
|
|
|
|
|
docker create --name sampledata -v /sampledata jodogne/orthanc-plugins
|
|
|
|
|
````
|
|
|
|
|
|
|
|
|
|
**Note: On Windows, you need to use an absolute path for the data volume, like so:**
|
|
|
|
|
|
|
|
|
|
````
|
|
|
|
|
docker create --name sampledata -v '//C/Users/erik/sampledata' jodogne/orthanc-plugins
|
|
|
|
|
````
|
2015-10-30 12:21:59 +01:00
|
|
|
|
|
|
|
|
2. Run Orthanc from Docker with the data volume attached
|
2015-11-03 16:49:05 +01:00
|
|
|
|
2015-11-12 15:29:58 +01:00
|
|
|
````
|
|
|
|
|
docker run --volumes-from sampledata -p 4242:4242 -p 8042:8042 jodogne/orthanc-plugins
|
|
|
|
|
````
|
2015-10-30 12:21:59 +01:00
|
|
|
|
2015-11-03 16:49:05 +01:00
|
|
|
3. Upload your data and it will be persisted
|