From b32060534c62cb2917f3bc07770eba66d00bc22b Mon Sep 17 00:00:00 2001 From: "derek.sharpe" Date: Mon, 24 Jun 2024 19:42:13 +0000 Subject: [PATCH] Corrected documentation for WLSIMG_BUILDER and WLSIMG_BLDDIR environment variables. --- documentation/site/content/userguide/config.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/documentation/site/content/userguide/config.md b/documentation/site/content/userguide/config.md index 3e2b4791..1481fb04 100644 --- a/documentation/site/content/userguide/config.md +++ b/documentation/site/content/userguide/config.md @@ -10,7 +10,9 @@ non-typical use cases when the default values are insufficient. ### Environment variables +- `WLSIMG_BLDDIR` - During the build process, Image Tool creates a Docker context directory where it will create a Dockerfile and copy necessary files for the container image build. Setting this variable to another directory overrides the default of the user's home directory as the parent folder of the Docker context directory. +- `WLSIMG_BUILDER` - As an alternative to the command-line argument `--builder`, this variable can be used to override the tool to process the Dockerfile (such as`docker` or `podman`). The provided value should be the full path to the executable. For example, `WLSIMG_BUILDER="/usr/bin/docker"`. - `WLSIMG_CACHEDIR` - When Image Tool downloads patches, those patches are saved in the cache directory. Setting this variable to another directory overrides the default of the `cache` folder in the user's home directory. -- `WLSIMG_BUILDER` - During the build process, Image Tool creates a Docker context directory where it will create a Dockerfile and copy necessary files for the container image build. Setting this variable to another directory overrides the default of the user's home directory for the parent folder of the Docker context directory. - `WLSIMG_OS_PACKAGES` - There are several packages and libraries that are required by the WebLogic Kubernetes Toolkit. The default packages included at build time are `gzip tar unzip libaio libnsl jq findutils diffutils`. The names for those libraries can be different depending on your preferred Linux distribution or OS version. The value that you provide in this environment variable will be used in place of the default package list. +