1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

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

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