浏览代码

move image name into correct position

Docker-DCO-1.1-Signed-off-by: Aaron Feng <aaron.feng@gmail.com> (github: aaronfeng)
Aaron Feng 11 年之前
父节点
当前提交
31e5958009
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      docs/sources/use/working_with_volumes.rst

+ 1 - 1
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 
 Interestingly, you can mount the volumes that came from the ``DATA`` container in 
 yet another container via the ``client1`` middleman container::
 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, 
 This allows you to abstract the actual data source from users of that data, 
 similar to :ref:`ambassador_pattern_linking <ambassador_pattern_linking>`.
 similar to :ref:`ambassador_pattern_linking <ambassador_pattern_linking>`.