You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: documentation/1.9/content/developer/build.md
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,20 +8,20 @@ weight: 1
8
8
9
9
The Image Tool installer is available for download on the [Releases](https://github.com/oracle/weblogic-image-tool/releases) page.
10
10
If you want to build the installer from source instead of downloading it, follow these instructions:
11
-
- Download and install JDK 8u261+
12
-
- Download and install Maven 3.6.3+
13
-
- Clone this repository to your local environment using one of the options under `Code` near the top of this page.
14
-
- From inside the top-level directory of the cloned project, `weblogic-image-tool`, using Maven, execute one or
11
+
1. Download and install JDK 8u261+
12
+
1. Download and install Maven 3.6.3+
13
+
1. Clone [this](https://github.com/oracle/weblogic-image-tool) repository to your local environment using one of the options under `Code` near the top of this page.
14
+
1. From inside the top-level directory of the cloned project, `weblogic-image-tool`, using Maven, execute one or
15
15
more of these phases:
16
16
- `validate` - Validate the project is correct and all necessary information is available.
17
17
- `compile` - Compile the source code.
18
18
- `test` - Test the compiled source code using the JUnit5 framework.
19
19
- `package` - Create the installer ZIP file, `imagetool.zip`.
20
-
- `verify` - Run integration tests using the JUnit5 framework (Pre-requisite: Docker installed).
20
+
- `verify` - Run integration tests using the JUnit5 framework (Prerequisite: Docker installed).
21
21
- `clean` - Restore the source by removing any items created by `package` or another phase of the build.
22
22
23
23
**Note:** Maven executes build phases sequentially, `validate`, `compile`, `test`, `package`, `verify`, such that
24
-
running `verify` will run all of these phases from `validate` through `package` before executing`verify`.
24
+
running `verify` will run all of these phases from `validate` through `package` before running`verify`.
25
25
26
26
Because the `package` phase comes before the `verify` phase, it is not necessary to run the integration tests to create
27
27
the Image Tool installer. If you are making changes and want to validate those changes in your environment, you will
@@ -32,22 +32,22 @@ and `STAGING_DIR`. The first two, Oracle Support user name and password, are us
32
32
The third, `STAGING_DIR`, should be a local folder where WebLogic Server installers, JDK installers, and pre-downloaded
33
33
patches can be found. The files required in the `STAGING_DIR` depend on which tests that you want to run.
34
34
35
-
Example: Run a set of integration tests (available groups are `cache`, `gate`, and `nightly`:
35
+
**Example**: Run a set of integration tests (available groups are `cache`, `gate`, and `nightly`:
5. Occasionally, a WebLogic Server patch will require patching the OPatch binaries before applying them. We recommend downloading the latest OPatch patch and setting up the cache.
Copy file name to clipboardExpand all lines: documentation/1.9/content/samples/create-image-with-internet.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ and save them in a directory of your choice, for example, `/home/acmeuser/wls-in
35
35
36
36
**Note**: The value of the version must be a valid WebLogic Server version number. This version number is used to verify and find the correct patch file to download from Oracle Support. The format of the version is a 5 digits tuple, separated by period. For example, ```12.2.1.3.0``````12.1.3.0.0```
37
37
38
-
3. Create the image using the [Create Tool](create-image.md) commands. For example:
38
+
3. Create the image using the [Create Tool]({{< relref "/userguide/tools/create-image.md">}}) commands. For example:
Copy file name to clipboardExpand all lines: documentation/1.9/content/userguide/prerequisites.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ draft: false
5
5
weight: 1
6
6
---
7
7
8
-
- Docker client and daemon on the build machine, with minimum Docker version 18.03.1.ce.
8
+
- Docker client and daemon on the build machine, with a minimum Docker version 18.03.1.ce.
9
9
- OPTIONALLY: Podman 3.x may be used in place of Docker.
10
10
- Installers for WebLogic Server and JDK from the [Oracle Software Delivery Cloud](https://edelivery.oracle.com).
11
11
- When using any of the patching options, `--patches`, `--recommendedPatches`, or `--latestPSU`, you will need to provide [Oracle Support](https://www.oracle.com/technical-resources/) credentials.
Copy file name to clipboardExpand all lines: documentation/1.9/content/userguide/tools/_index.md
+2-4Lines changed: 2 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,5 @@ weight = 3
5
5
pre = "<b> </b>"
6
6
+++
7
7
8
-
-[Create Image]({{< relref "/userguide/tools/create-image.md" >}}): The `create` command creates a new Docker image and installs the requested Java and WebLogic software. In addition, you can create a WebLogic domain in the image at the same time.
9
-
-[Rebase Image]({{< relref "/userguide/tools/rebase-image.md" >}}): The `rebase` command creates a new Docker image using an existing WebLogic domain from an existing image. The new Docker image can start from an existing image with a JDK and Oracle middleware installation, or can install the JDK and Oracle Home as part of moving the domain.
10
-
-[Update Image]({{< relref "/userguide/tools/update-image.md" >}}): The `update` command creates a new Docker image by applying WebLogic patches to an existing image. In addition, you can create a WebLogic domain if one did not exist previously, update an existing domain, or deploy an application.
11
-
-[Cache]({{< relref "/userguide/tools/cache.md" >}}): The Image Tool maintains metadata on the local file system for patches and installers. You can use the `cache` command to manipulate the local metadata.
0 commit comments