Skip to content

Commit 4bed0e9

Browse files
committed
Updates to documentation and sample env files
1 parent e7872d9 commit 4bed0e9

File tree

3 files changed

+17
-11
lines changed

3 files changed

+17
-11
lines changed

README.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
55
## Prerequisites
66

7-
* `sudo` rights.
87
* Installed the following:
98
* Git
109
* Curl
@@ -20,9 +19,9 @@
2019
2. Download the installer files:
2120
* [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)
2221
* [Oracle Application Express](https://apex.oracle.com/download) (supports versions up 19.1 as of March 29, 2019)
23-
* [Oracle REST Data Services](https://www.oracle.com/technetwork/developer-tools/rest-data-services/downloads/index.html) (supports versions up to 19.1 as of April 10, 2019)
24-
* [Java Development Kit SE 8](https://www.oracle.com/technetwork/java/javase/downloads/)
25-
3. Place all three files in the sub-directory `files`.
22+
* [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)
24+
3. Place all four files in the sub-directory `files`.
2625
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:
2726
```bash
2827
ORACLE_SID=XE
@@ -31,16 +30,19 @@
3130
APEX_ADMIN_EMAIL=myemail@domain.com
3231
APEX_ADMIN_PWD=Oracle__18
3332
INSTALL_FILE_APEX=apex_19.1.zip
34-
INSTALL_FILE_ORDS=ords-19.1.0.092.1545.zip
35-
INSTALL_FILE_JAVA=jdk-8u201-linux-x64.tar.gz
33+
INSTALL_FILE_ORDS=ords-19.2.0.199.1647.zip
34+
INSTALL_FILE_JAVA=jdk-8u221-linux-x64.tar.gz
3635
DOCKER_ORDS_PORT=50080
3736
DOCKER_EM_PORT=55500
3837
DOCKER_DB_PORT=51521
3938
DB_VERSION=18.4.0
4039
DB_EDITION=XE
40+
DOCKER_NETWORK_NAME=axer_network
41+
RTU_ENABLED=N
4142
```
4243

43-
> To specify a Docker network to attach to, add the parameter `DOCKER_NETWORK_NAME`. The run script will check if the network exists, and if not, create it.
44+
> * 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.
4446
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`):
4547
```bash
4648
$ . 01-build.sh mysettings.env

settings.env.sample

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,12 @@ APEX_LISTENER_PWD=Oracle18_2
88
APEX_REST_PUBLIC_USER_PWD=Oracle18_3
99
ORDS_PUBLIC_USER_PWD=Oracle18_4
1010
INSTALL_FILE_APEX=apex_19.1.zip
11-
INSTALL_FILE_ORDS=ords-19.1.0.092.1545.zip
12-
INSTALL_FILE_JAVA=jdk-8u211-linux-x64.tar.gz
11+
INSTALL_FILE_ORDS=ords-19.2.0.199.1647.zip
12+
INSTALL_FILE_JAVA=jdk-8u221-linux-x64.tar.gz
1313
DOCKER_ORDS_PORT=50080
1414
DOCKER_EM_PORT=55500
1515
DOCKER_DB_PORT=51521
1616
DB_VERSION=18.4.0
1717
DB_EDITION=xe
18+
DOCKER_NETWORK_NAME=axer_network
19+
RTU_ENABLED=N

settings_db19c.env.sample

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,12 @@ APEX_LISTENER_PWD=Oracle19_2
88
APEX_REST_PUBLIC_USER_PWD=Oracle19_3
99
ORDS_PUBLIC_USER_PWD=Oracle19_4
1010
INSTALL_FILE_APEX=apex_19.1.zip
11-
INSTALL_FILE_ORDS=ords-19.1.0.092.1545.zip
12-
INSTALL_FILE_JAVA=jdk-8u211-linux-x64.tar.gz
11+
INSTALL_FILE_ORDS=ords-19.2.0.199.1647.zip
12+
INSTALL_FILE_JAVA=jdk-8u221-linux-x64.tar.gz
1313
DOCKER_ORDS_PORT=50080
1414
DOCKER_EM_PORT=55500
1515
DOCKER_DB_PORT=51521
1616
DB_VERSION=19.3.0
1717
DB_EDITION=ee
18+
DOCKER_NETWORK_NAME=axer_network
19+
RTU_ENABLED=N

0 commit comments

Comments
 (0)