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
If you're interested in helping maintain this project check out [docker-dev](docs/docker-dev.md) document.
166
-
167
167
168
-
## Preserving `/opt/oracle/oradata` for Multiple Copies
168
+
###Preserving `/opt/oracle/oradata` for Multiple Copies
169
169
170
170
Each time you start a container that does has an empty `/opt/oracle/oradata` Oracle XE is configured and the data files are created for the CDB and one PDB (`XEPDB1`). If you plan to launch multiple separate containers for Oracle XE, it is unnecessary to spend this time waiting for the same base files to be created. The solution is fairly simple. It involves creating a sample/seed container, extracting the data files, then copying those data files each time you launch a new container for a new instance of Oracle XE. The following commands demonstrates how to do this:
171
171
@@ -217,4 +217,8 @@ docker ps
217
217
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
218
218
69b52a37a1c6 oracle-xe:18c "/bin/sh -c 'exec ${…" 8 minutes ago Up 8 minutes (health: starting) 5500/tcp, 0.0.0.0:32182->1521/tcp oracle-xe02
219
219
14eea4c699d3 oracle-xe:18c "/bin/sh -c 'exec ${…" 9 minutes ago Up 9 minutes (health: starting) 5500/tcp, 0.0.0.0:32181->1521/tcp oracle-xe01
220
-
```
220
+
```
221
+
222
+
## Docker Developers
223
+
224
+
If you're interested in helping maintain this project check out [docker-dev](docs/docker-dev.md) document.
Copy file name to clipboardExpand all lines: docs/apex-install.md
+18-2Lines changed: 18 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,17 @@
1
1
# How to Install APEX in PDB
2
2
3
+
<!-- TOC -->
4
+
5
+
-[How to Install APEX in PDB](#how-to-install-apex-in-pdb)
6
+
-[Assumptions](#assumptions)
7
+
-[APEX Installation](#apex-installation)
8
+
-[ORDS](#ords)
9
+
10
+
<!-- /TOC -->
11
+
3
12
This documentation will walk through how to create a new PDB and install it. Please ensure that you have [downloaded](https://www.oracle.com/technetwork/developer-tools/apex/downloads/index.html) the latest copy of APEX.
4
13
5
-
Assumptions:
14
+
## Assumptions
6
15
7
16
Item | Description
8
17
--- | ---
@@ -11,6 +20,9 @@ APEX Version | `18.2`. The zip file is located in:
0 commit comments