From 2e3e164f161d98251ebc2a1feed8b462765d7958 Mon Sep 17 00:00:00 2001 From: Harshavardhana Date: Tue, 15 Mar 2016 10:01:58 -0700 Subject: [PATCH] Update Docker.md --- Docker.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Docker.md b/Docker.md index eff319a45..ed4423d90 100644 --- a/Docker.md +++ b/Docker.md @@ -28,10 +28,10 @@ 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 +docker create -v /export --name minio-export -v /root/.minio --name minio-config minio/my-minio /bin/true ``` -You can then use the `--volumes-from` flag to mount the `/export` and ``/.minio`` volume in another container. +You can then use the `--volumes-from` flag to mount the `/export` and ``/root/.minio`` volume in another container. ```bash docker run -p 9000 --volumes-from minio-export --volumes-from minio-config --name minio-server1 minio/my-minio