ソースを参照

Merge pull request #3770 from aaronfeng/fix-image-name-pos

move image name into correct position
Andy Rothfusz 11 年 前
コミット
ef37fdd1a8
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>`.