Fix doc as per community member suggestion.

Added suggestion mentioned by our community member - fixes #1116
This commit is contained in:
Atul Jha 2016-03-08 10:24:44 -08:00 committed by Harshavardhana
parent 114f9de5eb
commit 41739e0913

View File

@ -25,6 +25,11 @@ docker stop <running_minio_container_id>
docker create -v /export --name minio-export minio/my-minio /bin/true
```
You can also map ```.minio``` directory containing authentication information.
```bash
docker create -v /export --name minio-export -v /.minio --name minio-config minio/my-minio /bin/true
```
You can then use the `--volumes-from` flag to mount the `/export` volume in another container.
```bash