-
Notifications
You must be signed in to change notification settings - Fork 25
When '--builder' isn't specified, use the WLSIMG_BUILDER env var... #393
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
…he build engine (if set). Continue to use 'docker' otherwise.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor edits
@@ -24,7 +24,7 @@ Usage: imagetool createAuxImage [OPTIONS] | |||
| `--tag` | (Required) Tag for the final build image. Example: `store/oracle/mydomain:1` | | | |||
| `--additionalBuildCommands` | Path to a file with additional build commands. For more details, see [Additional information](#--additionalbuildcommands). | | |||
| `--additionalBuildFiles` | Additional files that are required by your `additionalBuildCommands`. A comma separated list of files that should be copied to the build context. See [Additional information](#--additionalbuildfiles). | | |||
| `--builder`, `-b` | Executable to process the Dockerfile. Use the full path of the executable if not on your path. | `docker` | | |||
| `--builder`, `-b` | Executable to process the Dockerfile. Use the full path of the executable if not on your path. | Defaults to 'docker', or, when set, to the value in environment variable WLSIMG_BUILDER. | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
WLSIMG_BUILDER -> WLSIMG_BUILDER
(env variable should be in code font; please correct globally)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done. Also changed 'docker' to docker
.
@@ -16,7 +16,7 @@ Usage: imagetool inspect [OPTIONS] | |||
| Parameter | Definition | Default | | |||
| --- | --- | --- | | |||
| `--image`, `-i` | (Required) The image ID or image name to be inspected. | | | |||
| `--builder`, `-b` | Executable to process the Dockerfile. Use the full path of the executable if not on your path. | `docker` | | |||
| `--builder`, `-b` | Executable to inspect docker images. Use the full path of the executable if not on your path. | Defaults to 'docker', or, when set, to the value in environment variable WLSIMG_BUILDER. | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
docker -> Docker
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
Kudos, SonarCloud Quality Gate passed! |
…as the build engine (if set). Continue to use 'docker' otherwise.