From 154e2d35fc2cf4181845d618f11128980eef5976 Mon Sep 17 00:00:00 2001 From: Erik Ziegler Date: Tue, 3 Nov 2015 16:49:05 +0100 Subject: [PATCH] Update README.md --- README.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 011864000..5fb8fcaa4 100644 --- a/README.md +++ b/README.md @@ -4,13 +4,21 @@ This repo contains the OHIF DICOM Viewer and Lesion Trackers, and various shared ### Docker usage #### Temporary data storage +```` docker run --rm -p 4242:4242 -p 8042:8042 jodogne/orthanc-plugins +```` #### Persistent data storage 1. Create a persistant data volume for Orthanc to use + +```` docker create --name sampledata -v /sampledata jodogne/orthanc-plugins +```` 2. Run Orthanc from Docker with the data volume attached -docker run --volumes-from sampledata -p 4242:4242 -p 8042:8042 jodogne/orthanc-plugins -3. Upload your data and it will be persisted \ No newline at end of file +```` +docker run --volumes-from sampledata -p 4242:4242 -p 8042:8042 jodogne/orthanc-plugins +```` + +3. Upload your data and it will be persisted