Add Windows-specific Docker instructions to README

This commit is contained in:
Erik Ziegler 2015-11-12 15:29:58 +01:00
parent 9ce3e5ed86
commit 16daf5e72b

View File

@ -15,14 +15,20 @@ 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
````
````
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
````
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