Update README.md
This commit is contained in:
parent
ead3928077
commit
154e2d35fc
@ -4,13 +4,21 @@ This repo contains the OHIF DICOM Viewer and Lesion Trackers, and various shared
|
|||||||
|
|
||||||
### Docker usage
|
### Docker usage
|
||||||
#### Temporary data storage
|
#### Temporary data storage
|
||||||
|
````
|
||||||
docker run --rm -p 4242:4242 -p 8042:8042 jodogne/orthanc-plugins
|
docker run --rm -p 4242:4242 -p 8042:8042 jodogne/orthanc-plugins
|
||||||
|
````
|
||||||
|
|
||||||
#### Persistent data storage
|
#### Persistent data storage
|
||||||
1. Create a persistant data volume for Orthanc to use
|
1. Create a persistant data volume for Orthanc to use
|
||||||
|
|
||||||
|
````
|
||||||
docker create --name sampledata -v /sampledata jodogne/orthanc-plugins
|
docker create --name sampledata -v /sampledata jodogne/orthanc-plugins
|
||||||
|
````
|
||||||
|
|
||||||
2. Run Orthanc from Docker with the data volume attached
|
2. Run Orthanc from Docker with the data volume attached
|
||||||
|
|
||||||
|
````
|
||||||
docker run --volumes-from sampledata -p 4242:4242 -p 8042:8042 jodogne/orthanc-plugins
|
docker run --volumes-from sampledata -p 4242:4242 -p 8042:8042 jodogne/orthanc-plugins
|
||||||
|
````
|
||||||
|
|
||||||
3. Upload your data and it will be persisted
|
3. Upload your data and it will be persisted
|
||||||
Loading…
Reference in New Issue
Block a user