aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/build_defs/docker/README.md
diff options
context:
space:
mode:
authorGravatar Damien Martin-Guillerez <dmarting@google.com>2015-09-29 15:11:30 +0000
committerGravatar Florian Weikert <fwe@google.com>2015-09-30 09:35:22 +0000
commitb00b7ac4c16d5c9e2bab8bf7508bc64e188be861 (patch)
tree01676d1e46c186c731d39cf5108f0023147ec13b /tools/build_defs/docker/README.md
parentd7b64bd03100300b79cd33d04904ce9b0e6a5332 (diff)
[docker] Add workdir attribute
The workdir attribute set the initial working directory when starting the docker container. Contrary to the WORKDIR directive (see https://docs.docker.com/reference/builder/#workdir), it only affects the entry point. -- MOS_MIGRATED_REVID=104201472
Diffstat (limited to 'tools/build_defs/docker/README.md')
-rw-r--r--tools/build_defs/docker/README.md13
1 files changed, 12 insertions, 1 deletions
diff --git a/tools/build_defs/docker/README.md b/tools/build_defs/docker/README.md
index 3d93ec45ce..a225f5c259 100644
--- a/tools/build_defs/docker/README.md
+++ b/tools/build_defs/docker/README.md
@@ -181,7 +181,7 @@ docker_build(
### `docker_build`
`docker_build(name, base, data_path, directory, files, mode, tars,
-debs, symlinks, entrypoint, cmd, env, ports, volumes)`
+debs, symlinks, entrypoint, cmd, env, ports, volumes, workdir)`
<table>
<thead>
@@ -322,6 +322,17 @@ debs, symlinks, entrypoint, cmd, env, ports, volumes)`
of volumes to mount.</a></p>
</td>
</tr>
+ <tr>
+ <td><code>workdir</code></td>
+ <td>
+ <code>String, optional</code>
+ <p><a href="https://docs.docker.com/reference/builder/#workdir">Initial
+ working directory when running the docker image.</a></p>
+ <p>Because building the image never happen inside a docker container,
+ this working directory does not affect the other actions (e.g.,
+ adding files).</p>
+ </td>
+ </tr>
</tbody>
</tbody>
</table>