Merge pull request #4318 from robpc/patch-1

Fixed typo in Dockerfile example
This commit is contained in:
Andy Rothfusz 2014-02-27 10:19:09 -08:00
commit ce8a735248
1 changed files with 1 additions and 1 deletions

View File

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