From 31e59580092bd4f144bf512e2fd13dcba426b02a Mon Sep 17 00:00:00 2001 From: Aaron Feng Date: Sat, 25 Jan 2014 20:22:59 -0500 Subject: [PATCH] move image name into correct position Docker-DCO-1.1-Signed-off-by: Aaron Feng (github: aaronfeng) --- docs/sources/use/working_with_volumes.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sources/use/working_with_volumes.rst b/docs/sources/use/working_with_volumes.rst index 82d5806954..34728cbd3d 100644 --- a/docs/sources/use/working_with_volumes.rst +++ b/docs/sources/use/working_with_volumes.rst @@ -73,7 +73,7 @@ data volumes from multiple containers. Interestingly, you can mount the volumes that came from the ``DATA`` container in yet another container via the ``client1`` middleman container:: - $ docker run -t -i -rm -volumes-from client1 ubuntu -name client2 bash + $ docker run -t -i -rm -volumes-from client1 -name client2 ubuntu bash This allows you to abstract the actual data source from users of that data, similar to :ref:`ambassador_pattern_linking `.