From 1475dafd5204a6df2e69dec5214270020edf5e50 Mon Sep 17 00:00:00 2001 From: robpc Date: Mon, 24 Feb 2014 15:49:31 -0500 Subject: [PATCH] Fixed typo in Dockerfile example Docker-DCO-1.1-Signed-off-by: Rob Cannon (github: robpc) The 'true' command is located in /bin not /usr/bin in the busybox image. --- docs/sources/use/working_with_volumes.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sources/use/working_with_volumes.rst b/docs/sources/use/working_with_volumes.rst index 8ddd4196c7..9a27e4b929 100644 --- a/docs/sources/use/working_with_volumes.rst +++ b/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 ---------------------------------------------