Skip to content

Commit 3b437fa

Browse files
committed
Readme updated
1 parent 9a02c40 commit 3b437fa

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

README.md

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* [Oracle Database 18c XE](https://oracle.com/xe) or any of the required installation files from [OTN](https://www.oracle.com/technetwork/database/) (supports versions up to 19.3 as of April 25, 2019)
2121
* [Oracle Application Express](https://apex.oracle.com/download) (supports versions up 19.1 as of March 29, 2019)
2222
* [Oracle REST Data Services](https://www.oracle.com/technetwork/developer-tools/rest-data-services/downloads/index.html) (supports versions up to 19.2 as of August 31, 2019)
23-
* [Java Development Kit SE 8](https://www.oracle.com/technetwork/java/javase/downloads/) (IMPORTANT: Download the tarball)
23+
* [Java Development Kit SE 8](https://www.oracle.com/technetwork/java/javase/downloads/) (**IMPORTANT**: Please download the tarball)
2424
3. Place all four files in the sub-directory `files`.
2525
4. Create a new file that contains the required variables. Make a copy of `settings.env.sample`, e.g. `mysettings.env`, and modify as desired. The file should contain the following variables:
2626
```bash
@@ -29,20 +29,25 @@
2929
ORACLE_PWD=Oracle18
3030
APEX_ADMIN_EMAIL=myemail@domain.com
3131
APEX_ADMIN_PWD=Oracle__18
32-
INSTALL_FILE_APEX=apex_19.1.zip
32+
APEX_PUBLIC_USER_PWD=Oracle18_1
33+
APEX_LISTENER_PWD=Oracle18_2
34+
APEX_REST_PUBLIC_USER_PWD=Oracle18_3
35+
ORDS_PUBLIC_USER_PWD=Oracle18_4
36+
INSTALL_FILE_APEX=apex_19.2.zip
3337
INSTALL_FILE_ORDS=ords-19.2.0.199.1647.zip
34-
INSTALL_FILE_JAVA=jdk-8u221-linux-x64.tar.gz
38+
INSTALL_FILE_JAVA=jdk-8u231-linux-x64.tar.gz
3539
DOCKER_ORDS_PORT=50080
3640
DOCKER_EM_PORT=55500
3741
DOCKER_DB_PORT=51521
3842
DB_VERSION=18.4.0
39-
DB_EDITION=XE
43+
DB_EDITION=xe
4044
DOCKER_NETWORK_NAME=axer_network
4145
RTU_ENABLED=N
4246
```
4347

4448
> * Specify the Docker network to attach to using the parameter `DOCKER_NETWORK_NAME`. The run script will check if the network exists, and if not, create it.
45-
> * A new parameter `RTU_ENABLED` has been introduced. It allows users to create containers that can be used to create an image from using Docker [commit](https://docs.docker.com/engine/reference/commandline/commit/). Set the value to "Y" if this ability is required.
49+
> * The parameter `RTU_ENABLED` has been introduced. It allows users to create containers that can be used to create an image from using Docker [commit](https://docs.docker.com/engine/reference/commandline/commit/). Set the value to "Y" if this ability is required.
50+
> * **NEW** Use the `FILES_DIR` parameter to specify the local path to all the required installation files, e.g. `/path/to/my/downloads`.
4651
5. Run the first script to grab the latest Docker [images](https://github.com/oracle/docker-images) from Oracle and build the Oracle Database image. The script takes one parameter, the environment filename (`mysettings.env`):
4752
```bash
4853
$ . 01-build.sh mysettings.env
@@ -58,4 +63,4 @@ Using the sample settings, the following are accessible:
5863
|-|-|-|
5964
| 50080 | APEX | http://localhost:50080 |
6065
| 51521 | Database | N/A |
61-
| 55500 | Enterprise Manager Express | https://localhost:55500/em |
66+
| 55500 | Enterprise Manager Express | https://localhost:55500/em |

0 commit comments

Comments
 (0)