From cb78cb331d41ee077fd758286185ad1bc6fd2d3b Mon Sep 17 00:00:00 2001 From: Rickard von Essen Date: Sat, 26 Nov 2016 18:34:49 +0100 Subject: [PATCH] Documented author, changes, and message --- website/source/docs/builders/docker.html.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/website/source/docs/builders/docker.html.md b/website/source/docs/builders/docker.html.md index 7d2a4f21e..a42d83d58 100644 --- a/website/source/docs/builders/docker.html.md +++ b/website/source/docs/builders/docker.html.md @@ -86,6 +86,8 @@ You must specify (only) one of `commit`, `discard`, or `export_path`. ### Optional: +- `author` (string) - Set the author (e-mail) of a commit. + - `aws_access_key` (string) - The AWS access key used to communicate with AWS. [Learn how to set this.](/docs/builders/amazon.html#specifying-amazon-credentials) @@ -97,6 +99,10 @@ You must specify (only) one of `commit`, `discard`, or `export_path`. probably don't need it. This will also be read from the `AWS_SESSION_TOKEN` environmental variable. +- `changes` (array of strings) - Dockerfile instructions to add to the commit. + Example of instructions are `CMD`, `ENTRYPOINT`, `ENV`, and `EXPOSE`. Example: + `[ "USER ubuntu", "WORKDIR /app", "EXPOSE 8080" ]` + - `ecr_login` (boolean) - Defaults to false. If true, the builder will login in order to pull the image from [Amazon EC2 Container Registry (ECR)](https://aws.amazon.com/ecr/). @@ -116,6 +122,8 @@ You must specify (only) one of `commit`, `discard`, or `export_path`. - `login_server` (string) - The server address to login to. +- `message` (string) - Set a message for the commit. + - `privileged` (boolean) - If true, run the docker container with the `--privileged` flag. This defaults to false if not set.