浏览代码

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
 ---------------------------------------------