mirror of https://github.com/docker/cli.git
Add some documentation about relative WORKDIR values
Docker-DCO-1.1-Signed-off-by: Andrew Page <admwiggin@gmail.com> (github: tianon)
This commit is contained in:
parent
ec1254275d
commit
dfd2d9f1ea
|
@ -407,7 +407,16 @@ the image.
|
|||
The ``WORKDIR`` instruction sets the working directory for the ``RUN``, ``CMD`` and
|
||||
``ENTRYPOINT`` Dockerfile commands that follow it.
|
||||
|
||||
It can be used multiple times in the one Dockerfile.
|
||||
It can be used multiple times in the one Dockerfile. If a relative path is
|
||||
provided, it will be relative to the path of the previous ``WORKDIR``
|
||||
instruction. For example:
|
||||
|
||||
WORKDIR /a
|
||||
WORKDIR b
|
||||
WORKDIR c
|
||||
RUN pwd
|
||||
|
||||
The output of the final ``pwd`` command in this Dockerfile would be ``/a/b/c``.
|
||||
|
||||
3.11 ONBUILD
|
||||
------------
|
||||
|
|
Loading…
Reference in New Issue