You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11-6Lines changed: 11 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@
20
20
*[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)
21
21
*[Oracle Application Express](https://apex.oracle.com/download) (supports versions up 19.1 as of March 29, 2019)
22
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)
23
+
*[Java Development Kit SE 8](https://www.oracle.com/technetwork/java/javase/downloads/) (**IMPORTANT**: Please download the tarball)
24
24
3. Place all four files in the sub-directory `files`.
25
25
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:
26
26
```bash
@@ -29,20 +29,25 @@
29
29
ORACLE_PWD=Oracle18
30
30
APEX_ADMIN_EMAIL=myemail@domain.com
31
31
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
33
37
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
35
39
DOCKER_ORDS_PORT=50080
36
40
DOCKER_EM_PORT=55500
37
41
DOCKER_DB_PORT=51521
38
42
DB_VERSION=18.4.0
39
-
DB_EDITION=XE
43
+
DB_EDITION=xe
40
44
DOCKER_NETWORK_NAME=axer_network
41
45
RTU_ENABLED=N
42
46
```
43
47
44
48
>* 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`.
46
51
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`):
47
52
```bash
48
53
$ . 01-build.sh mysettings.env
@@ -58,4 +63,4 @@ Using the sample settings, the following are accessible:
0 commit comments