Skip to content

Commit d0f4af5

Browse files
committed
Merge branch 'doc-chown' into 'main'
Clarify documentation for --chown command line option See merge request weblogic-cloud/weblogic-image-tool!461
2 parents 2446aaf + 9ced453 commit d0f4af5

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

.idea/codeStyles/Project.xml

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

documentation/1.11/content/userguide/tools/create-aux-image.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Usage: imagetool createAuxImage [OPTIONS]
2626
| `--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). |
2727
| `--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`. |
2828
| `--buildNetwork` | Networking mode for the RUN instructions during the image build. See `--network` for Docker `build`. | |
29-
| `--chown` | `userid:groupid` for JDK/Middleware installs and patches. | `oracle:oracle` |
29+
| `--chown` | `userid:groupid` to be used for creating files within the image, such as the WDT installer, WDT model, and WDT archive. If the user or group does not exist in the image, they will be added with useradd/groupadd. | `oracle:oracle` |
3030
| `--dryRun` | Skip Docker build execution and print the Dockerfile to stdout. | |
3131
| `--fromImage` | Container image to use as a base image when creating a new image. | `busybox` |
3232
| `--httpProxyUrl` | Proxy for the HTTP protocol. Example: `http://myproxy:80` or `http:user:passwd@myproxy:8080` | |

documentation/1.11/content/userguide/tools/create-image.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Usage: imagetool create [OPTIONS]
2323
| `--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). |
2424
| `--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`. |
2525
| `--buildNetwork` | Networking mode for the RUN instructions during the image build. See `--network` for Docker `build`. | |
26-
| `--chown` | `userid:groupid` for JDK/Middleware installs and patches. | `oracle:oracle` |
26+
| `--chown` | `userid:groupid` to be used for creating files within the image, such as the JDK, the FMW/WLS installs, etc. If the user or group does not exist in the image, they will be added with useradd/groupadd. | `oracle:oracle` |
2727
| `--docker` | (DEPRECATED) Path to the Docker executable. Use `--builder` instead. | `docker` |
2828
| `--dryRun` | Skip Docker build execution and print the Dockerfile to stdout. | |
2929
| `--fromImage` | Container image to use as a base image when creating a new image. | `ghcr.io/oracle/oraclelinux:8-slim` |

documentation/1.11/content/userguide/tools/rebase-image.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Usage: imagetool rebase [OPTIONS]
2323
| `--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). |
2424
| `--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`. |
2525
| `--buildNetwork` | Networking mode for the RUN instructions during the image build. See `--network` for Docker `build`. | |
26-
| `--chown` | `userid:groupid` for JDK/Middleware installs and patches. | `oracle:oracle` |
26+
| `--chown` | `userid:groupid` to be used for creating files within the image, such as the JDK, the FMW/WLS installs, etc. If the user or group does not exist in the image, they will be added with useradd/groupadd. | `oracle:oracle` |
2727
| `--dryRun` | Skip Docker build execution and print the Dockerfile to stdout. | |
2828
| `--fromImage` | Container image to use as a base image when creating a new image. | `ghcr.io/oracle/oraclelinux:8-slim` |
2929
| `--httpProxyUrl` | Proxy for the HTTP protocol. Example: `http://myproxy:80` or `http:user:passwd@myproxy:8080` | |

documentation/1.11/content/userguide/tools/update-image.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Update WebLogic Docker image with selected patches
3131
| `--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). | |
3232
| `--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`. |
3333
| `--buildNetwork` | Networking mode for the RUN instructions during the image build. See `--network` for Docker `build`. | |
34-
| `--chown` | `userid:groupid` for middleware patches and other operations. | Owner:Group of the Oracle Home |
34+
| `--chown` | `userid:groupid` to be used for creating files and applying middleware patches within the image. The userid and groupid must already exist in the image. | Defaults to the user and group of the Oracle Home in the provided image. |
3535
| `--dryRun` | Skip Docker build execution and print the Dockerfile to stdout. | |
3636
| `--httpProxyUrl` | Proxy for the HTTP protocol. Example: `http://myproxy:80` or `http:user:passwd@myproxy:8080` | |
3737
| `--httpsProxyUrl` | Proxy for the HTTPS protocol. Example: `https://myproxy:80` or `https:user:passwd@myproxy:8080` | |

0 commit comments

Comments
 (0)