Parcourir la source

Merge pull request #4318 from robpc/patch-1

Fixed typo in Dockerfile example
Andy Rothfusz il y a 11 ans
Parent
commit
ce8a735248
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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 
   # RUN-USING:          docker run -name DATA data 
   FROM          busybox
   FROM          busybox
   VOLUME        ["/var/volume1", "/var/volume2"]
   VOLUME        ["/var/volume1", "/var/volume2"]
-  CMD           ["/usr/bin/true"]
+  CMD           ["/bin/true"]
 
 
 Creating and mounting a Data Volume Container
 Creating and mounting a Data Volume Container
 ---------------------------------------------
 ---------------------------------------------