ソースを参照

Merge pull request #4318 from robpc/patch-1

Fixed typo in Dockerfile example
Andy Rothfusz 11 年 前
コミット
ce8a735248
1 ファイル変更1 行追加1 行削除
  1. 1 1
      docs/sources/use/working_with_volumes.rst

+ 1 - 1
docs/sources/use/working_with_volumes.rst

@@ -50,7 +50,7 @@ volumes to any container created from that image::
   # RUN-USING:          docker run -name DATA data 
   FROM          busybox
   VOLUME        ["/var/volume1", "/var/volume2"]
-  CMD           ["/usr/bin/true"]
+  CMD           ["/bin/true"]
 
 Creating and mounting a Data Volume Container
 ---------------------------------------------