Skip to content

Commit 6008a27

Browse files
committed
Resolve issue #23 and updated for latest JDK.
1 parent 28d0bc6 commit 6008a27

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

02-run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ fi
2626

2727
echo "##### Changing file ownership. May require password to continue. #####"
2828
if ! [[ $RTU_ENABLED =~ ^(Y|y)$ ]]; then
29-
sudo -n chown 54321:543321 ${HOST_DATA_DIR} || chmod 777 ${HOST_DATA_DIR}
29+
sudo -n chown 54321:54321 ${HOST_DATA_DIR} || chmod 777 ${HOST_DATA_DIR}
3030
fi
3131

3232
echo "##### Creating container $CONTAINER_NAME #####"

README.md

Lines changed: 2 additions & 2 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.2 as of November 1, 2019)
2222
* [Oracle REST Data Services](https://www.oracle.com/technetwork/developer-tools/rest-data-services/downloads/index.html) (supports versions up to 19.4 as of December 21, 2019)
23-
* [Java Development Kit SE 8](https://www.oracle.com/technetwork/java/javase/downloads/) (**IMPORTANT**: Please download the tarball, e.g. `jdk-8u231-linux-x64.tar.gz`.)
23+
* [Java Development Kit SE 8](https://www.oracle.com/technetwork/java/javase/downloads/) (**IMPORTANT**: Please download the tarball, e.g. `jdk-8u241-linux-x64.tar.gz`.)
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
@@ -35,7 +35,7 @@
3535
ORDS_PUBLIC_USER_PWD=Oracle18_4
3636
INSTALL_FILE_APEX=apex_19.2.zip
3737
INSTALL_FILE_ORDS=ords-19.2.0.199.1647.zip
38-
INSTALL_FILE_JAVA=jdk-8u231-linux-x64.tar.gz
38+
INSTALL_FILE_JAVA=jdk-8u241-linux-x64.tar.gz
3939
DOCKER_ORDS_PORT=50080
4040
DOCKER_EM_PORT=55500
4141
DOCKER_DB_PORT=51521

settings.env.sample

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ APEX_REST_PUBLIC_USER_PWD=Oracle18_3
99
ORDS_PUBLIC_USER_PWD=Oracle18_4
1010
INSTALL_FILE_APEX=apex_19.2.zip
1111
INSTALL_FILE_ORDS=ords-19.4.0.352.1226.zip
12-
INSTALL_FILE_JAVA=jdk-8u231-linux-x64.tar.gz
12+
INSTALL_FILE_JAVA=jdk-8u241-linux-x64.tar.gz
1313
DOCKER_ORDS_PORT=50080
1414
DOCKER_EM_PORT=55500
1515
DOCKER_DB_PORT=51521

settings_db19c.env.sample

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ APEX_REST_PUBLIC_USER_PWD=Oracle19_3
99
ORDS_PUBLIC_USER_PWD=Oracle19_4
1010
INSTALL_FILE_APEX=apex_19.2.zip
1111
INSTALL_FILE_ORDS=ords-19.4.0.352.1226.zip
12-
INSTALL_FILE_JAVA=jdk-8u231-linux-x64.tar.gz
12+
INSTALL_FILE_JAVA=jdk-8u241-linux-x64.tar.gz
1313
DOCKER_ORDS_PORT=50080
1414
DOCKER_EM_PORT=55500
1515
DOCKER_DB_PORT=51521

0 commit comments

Comments
 (0)