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
Build an oracle docker image beforehand. (oracle/database:19.3.0 for example)
6
+
7
+
In order to build one, `git clone` a repository.
8
+
9
+
```sh
10
+
git clone git@github.com:oracle/docker-images.git
11
+
cd docker-images/OracleDatabase/SingleInstance/dockerfiles/
12
+
```
13
+
14
+
Download zip file from [download page on oracle.com](https://www.oracle.com/database/technologies/oracle19c-linux-downloads.html#license-lightbox) and put it into `./19.3.0/` directory.
15
+
16
+
Build the image with following command.
17
+
18
+
```sh
19
+
./buildContainerImage.sh -v 19.3.0 -e
20
+
```
21
+
22
+
## Test
23
+
24
+
```sh
25
+
cd data-objectdriver
26
+
ORACLE_VERSION=19.3.0-ee docker compose -f ./xt/oracle/docker-compose.yml up
27
+
docker exec -it oracle-dod-1 prove -Ilib -It/lib t
28
+
```
29
+
30
+
## Inspect DB
31
+
32
+
```sh
33
+
docker exec -it oracle-dod-1 sh -c "NLS_LANG=JAPANESE_JAPAN.AL32UTF8 sqlplus system/test@oracle/global"
0 commit comments