Skip to content

Commit f5e3026

Browse files
rosemarymaranoddsharpe
authored andcommitted
minor edits (#9)
1 parent b12a992 commit f5e3026

File tree

4 files changed

+22
-25
lines changed

4 files changed

+22
-25
lines changed

README.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,49 @@
11
# Oracle WebLogic Image Tool
22

3-
Oracle is finding ways for organizations using WebLogic Server to run important workloads, to move those workloads into
4-
the cloud, and simplify and speedup application deployment lifecycle. By adopting on industry standards, such as Docker
5-
and Kubernetes, WebLogic now runs in a cloud neutral infrastructure. To help simplify and automate the creation of
6-
Docker images for WebLogic Server, we are providing this open-source
7-
Oracle WebLogic Image Tool. This tool let's you create a new image, with installations of a JDK and WebLogic Server,
8-
and optionally, configure a WebLogic domain with your applications, apply WebLogic Server patches, or update an existing
3+
Oracle is finding ways for organizations using WebLogic Server to run important workloads, to move those workloads into
4+
the cloud, and to simplify and speed up the application deployment life cycle. By adopting industry standards, such as Docker
5+
and Kubernetes, WebLogic now runs in a cloud neutral infrastructure. To help simplify and automate the creation of
6+
Docker images for WebLogic Server, we are providing this open-source
7+
Oracle WebLogic Image Tool. This tool let's you create a new image, with installations of a JDK and WebLogic Server,
8+
and optionally, configure a WebLogic domain with your applications, apply WebLogic Server patches, or update an existing
99
image.
1010

11-
## Features
11+
## Features
1212

1313
The Image Tool provides three functions within the main script:
14-
- [Create Image](site/create-image.md) - The `create` command helps build a WebLogic Docker image from a given base OS
15-
image.
16-
- [Update Image](site/update-image.md) - The `update` command can be used to apply WebLogic patches to an existing
14+
- [Create Image](site/create-image.md) - The `create` command helps build a WebLogic Docker image from a given base OS
15+
image.
16+
- [Update Image](site/update-image.md) - The `update` command can be used to apply WebLogic patches to an existing
1717
WebLogic Docker image.
18-
- [Cache](site/cache.md) - The Image Tool maintains a local file cache for patches and installers. The `cache`
19-
command can be used to manipulate the local file cache.
20-
18+
- [Cache](site/cache.md) - The Image Tool maintains a local file cache for patches and installers. The `cache`
19+
command can be used to manipulate the local file cache.
20+
2121
## Prerequisites
2222

2323
- Docker client and daemon on the build machine, with minimum Docker version 17.05+ to support multi-stage builds.
2424
- WebLogic Server and JDK installers from OTN / Oracle e-Delivery.
2525
- (For patches) Oracle support credentials.
26-
- Bash version 4.0 or higher to enable `<tab>` command complete feature
26+
- Bash version 4.0 or higher to enable the `<tab>` command complete feature.
2727

2828
## Setup
2929

3030
- Build the project (`mvn clean package`) to generate artifacts `imagetool-0.1-SNAPSHOT.zip`.
31-
- Unzip the release ZIP file to a desired location.
31+
- Unzip the release ZIP file to a desired location.
3232
- If running an OS with bash, run `cd your_unzipped_location/bin` and `source setup.sh`.
3333
- On Windows, set up with `imagetool.cmd` or the `imagetool.bat` script:
3434
```cmd
3535
@ECHO OFF
3636
java -cp "your_unzipped_folder/lib" com.oracle.weblogic.imagetool.cli.CLIDriver %*
3737
```
38-
38+
3939
## Help Command
4040
- After completing the [Setup](#Setup) steps, execute `imagetool help` to show the help screen.
4141
- You can execute the JAR directly using the command `java -cp "your_unzipped_folder/lib" com.oracle.weblogic.imagetool.cli.CLIDriver help`.
4242
4343
## Simple Example
4444
Let's give this a try!
45-
- Get the installers from Oracle e-Delivery
46-
- Add those installers to the Image Tool file cache
45+
- Get the installers from Oracle e-Delivery.
46+
- Add those installers to the Image Tool file cache.
4747
- Assuming Docker is installed, run `imagetool create`!
4848
```bash
4949
unzip imagetool-0.1.zip

site/cache.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Cache
22

3-
The image tool maintains a local file cache for patches and installers. The `cache` command can be used to manipulate
3+
The Image Tool maintains a local file cache for patches and installers. The `cache` command can be used to manipulate
44
the local file cache. There are several subcommands of the cache feature:
55

66
```
@@ -61,4 +61,3 @@ Commands:
6161
6262
## Copyright
6363
Copyright (c) 2019 Oracle and/or its affiliates. All rights reserved.
64-

site/create-image.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Build WebLogic docker image
4848

4949
**Note**: Use `--passwordEnv` or `--passwordFile` instead of `--password`.
5050

51-
The commands below assume that all the required JDK, WLS or FMW (WebLogic infrastructure installers) have been downloaded
51+
The commands below assume that all the required JDK, WLS, or FMW (WebLogic infrastructure installers) have been downloaded
5252
to the cache directory. Use the [cache](cache.md) command to set it up.
5353

5454
- Create an image named `sample:wls` with the WebLogic installer 12.2.1.3.0, server JDK 8u202, and latest PSU applied.
@@ -79,4 +79,3 @@ The commands below assume that all the required JDK, WLS or FMW (WebLogic infras
7979
```
8080
## Copyright
8181
Copyright (c) 2019 Oracle and/or its affiliates. All rights reserved.
82-

site/update-image.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Update Image
22

33
Use the `update` command to apply patches to an existing WebLogic Docker image. The required options for the command
4-
are marked with asterisk (*). The password can be provided in one of the three ways:
4+
are marked with an asterisk (*). The password can be provided in one of the three ways:
55

66
* Plain text
77
* Environment variable
@@ -38,7 +38,7 @@ Update WebLogic docker image with selected patches
3838

3939
**Note**: Use `--passwordEnv` or `--passwordFile` instead of `--password`.
4040

41-
- Update an image named `sample:1.0` by applying the latest PSU and tag it as `sample:1.1`:
41+
- Update an image named `sample:1.0` by applying the latest PSU and tag it as `sample:1.1`.
4242
```
4343
imagetool update --fromImage sample:1.0 --tag sample:1.1 --latestPSU --user [email protected] --passwordEnv MYVAR
4444
```
@@ -51,4 +51,3 @@ Update WebLogic docker image with selected patches
5151
5252
## Copyright
5353
Copyright (c) 2019 Oracle and/or its affiliates. All rights reserved.
54-

0 commit comments

Comments
 (0)