From 47669600a74c0ecfdb28dc75b842b1b952e0d686 Mon Sep 17 00:00:00 2001 From: Julien Bras Date: Fri, 21 Jun 2019 11:43:04 -0400 Subject: [PATCH] Update documentation to add parameter dockerfile This parameter is already available but not documented. --- docs/usage.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/usage.md b/docs/usage.md index 78bba079..c7e4fb47 100644 --- a/docs/usage.md +++ b/docs/usage.md @@ -32,7 +32,8 @@ mvn clean package -Ddockerfile.skip | Maven Option | What Does it Do? | Required | Default Value | | ------------- | -------------------------- | -------- | ------------- | -| `dockerfile.contextDirectory` | Directory containing the Dockerfile to build. | yes | none | +| `dockerfile.contextDirectory` | Directory containing the Dockerfile to build. | no | ${project.basedir} | +| `dockerfile.dockerfile` | File name of the Dockerfile (if not `Dockerfile`) | no | none | | `dockerfile.repository` | The repository to name the built image | no | none | | `dockerfile.tag` | The tag to apply when building the Dockerfile, which is appended to the repository. | no | latest | | `dockerfile.build.pullNewerImage` | Updates base images automatically. | no | true |