-
Notifications
You must be signed in to change notification settings - Fork 25
improve clarity on setup and prerequisites documentation #335
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
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
- OPTIONALLY: Podman 3.x may be used in place of Docker. | ||
- Installers for WebLogic Server and JDK from the [Oracle Software Delivery Cloud](https://edelivery.oracle.com). | ||
- A container image client on the build machine, such as Docker or Podman. | ||
- For Docker a minimum version of 18.03.1.ce is required. |
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.
For Docker -> For Docker, (comma)
For Podman -> For Podman, (comma)
- A container image client on the build machine, such as Docker or Podman. | ||
- For Docker a minimum version of 18.03.1.ce is required. | ||
- For Podman a minimum version of 3.0.1 is required. | ||
- An installed version of Java to run ImageTool, version 8+. |
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.
ImageTool -> Image Tool
- Download and unzip the WIT release ZIP file to a desired location. | ||
- OPTIONALLY: You may build the project (`mvn clean package`) to create the ZIP installer in `./imagetool/target`. | ||
- Download the WIT release ZIP file to a desired location. | ||
- The latest ZIP can be found on the project [releases](https://github.com/oracle/weblogic-image-tool/releases) page. |
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.
latest ZIP -> latest ZIP file
- OPTIONALLY: You may build the project (`mvn clean package`) to create the ZIP installer in `./imagetool/target`. | ||
- Download the WIT release ZIP file to a desired location. | ||
- The latest ZIP can be found on the project [releases](https://github.com/oracle/weblogic-image-tool/releases) page. | ||
- Alternatively, you can download the ZIP with cUrl. |
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.
ZIP -> ZIP file (please fix globally)
cUrl -> cURL
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.
Perfect. Thank you.
- Download and unzip the WIT release ZIP file to a desired location. | ||
- OPTIONALLY: You may build the project (`mvn clean package`) to create the ZIP installer in `./imagetool/target`. | ||
- Download the WIT release ZIP file to a desired location. | ||
- The latest ZIP file can be found on the project [releases](https://github.com/oracle/weblogic-image-tool/releases) page. |
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.
The latest ZIP file --> The latest release Zip file and Zip files for earlier releases
- Alternatively, you can download the ZIP file with cURL. | ||
```shell | ||
curl -m 120 -fL https://github.com/oracle/weblogic-image-tool/releases/latest/download/imagetool.zip -o ./imagetool.zip | ||
``` |
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.
- "the ZIP file" --> the latest ZIP file
- it'd be helpful IMO to also teach how to get a specific version (assuming that is straight forward)
- would it help if the non-quickstart samples could point to quick start? (for help with download/install)
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.
- the sample assumes image tool bin is in the PATH, but has no instructions for setting same
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.
- the sample assumes image tool bin is in the PATH, but has no instructions for setting same
I think we can assume that the user knows how to add a directory to the PATH.
Fixes #333. Minor updates to Build from Source, Setup, and Prerequisite documentation pages.