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

spelling fix from Marc MERLIN

Signed-off-by: Sven Dowideit <SvenDowideit@home.org.au>
This commit is contained in:
Sven Dowideit 2015-05-05 00:38:41 +00:00
parent 77183ed760
commit bba5fd8caa

View file

@ -892,11 +892,11 @@ consider the following Dockerfile snippet:
FROM ubuntu FROM ubuntu
RUN mkdir /myvol RUN mkdir /myvol
RUN echo "hello world" > /myvol/greating RUN echo "hello world" > /myvol/greeting
VOLUME /myvol VOLUME /myvol
This Dockerfile results in an image that causes `docker run`, to This Dockerfile results in an image that causes `docker run`, to
create a new mount point at `/myvol` and copy the `greating` file create a new mount point at `/myvol` and copy the `greeting` file
into the newly created volume. into the newly created volume.
> **Note**: > **Note**: