spelling fix from Marc MERLIN

Signed-off-by: Sven Dowideit <SvenDowideit@home.org.au>
Upstream-commit: 5b8040c935
Component: cli
This commit is contained in:
Sven Dowideit
2015-05-05 00:38:41 +00:00
committed by Tibor Vass
parent a91cf05860
commit ca3e83257e

View File

@ -892,11 +892,11 @@ consider the following Dockerfile snippet:
FROM ubuntu
RUN mkdir /myvol
RUN echo "hello world" > /myvol/greating
RUN echo "hello world" > /myvol/greeting
VOLUME /myvol
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.
> **Note**: