From 1b85eea07da0bf78ea303d3c6b897acd6a09dc76 Mon Sep 17 00:00:00 2001 From: liwenqi Date: Tue, 20 Dec 2016 16:44:17 +0800 Subject: [PATCH] correct some words Signed-off-by: liwenqi Update ISSUE-TRIAGE.md Signed-off-by: vicky <395658237@qq.com> --- docs/reference/builder.md | 2 +- docs/reference/commandline/build.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/reference/builder.md b/docs/reference/builder.md index 3e28b54f58..a95385f90f 100644 --- a/docs/reference/builder.md +++ b/docs/reference/builder.md @@ -1754,6 +1754,6 @@ FROM ubuntu RUN echo moo > oink # Will output something like ===> 695d7793cbe4 -# You᾿ll now have two images, 907ad6c2736f with /bar, and 695d7793cbe4 with +# You'll now have two images, 907ad6c2736f with /bar, and 695d7793cbe4 with # /oink. ``` diff --git a/docs/reference/commandline/build.md b/docs/reference/commandline/build.md index 9c2c71b489..2f8c59c387 100644 --- a/docs/reference/commandline/build.md +++ b/docs/reference/commandline/build.md @@ -262,7 +262,7 @@ Successfully built 377c409b35e4 This sends the URL `http://server/ctx.tar.gz` to the Docker daemon, which downloads and extracts the referenced tarball. The `-f ctx/Dockerfile` parameter specifies a path inside `ctx.tar.gz` to the `Dockerfile` that is used -to build the image. Any `ADD` commands in that `Dockerfile` that refer to local +to build the image. Any `ADD` commands in that `Dockerfile` that refers to local paths must be relative to the root of the contents inside `ctx.tar.gz`. In the example above, the tarball contains a directory `ctx/`, so the `ADD ctx/container.cfg /` operation works as expected.