Oracle Database 19c - Oracle19c EE Single Instance NonCDB
500K+
This is a customized image based on the official procedure provided by Oracle in its GitHub Repository.
Since they were only providing a solution based on CDB + PDB, I decided to customize the image, to have a SingleInstance-NonCDB installation.
Other customizations involved:
Source to the original file: https://github.com/oracle/docker-images
Copy the image
docker pull doctorkirk/oracle-19c
Create local directory
mkdir -p /your/custom/path/oracle-19c/oradata
cd /your/custom/path/
sudo chown -R 54321:54321 oracle-19c/
Run the Container
docker run --name oracle-19c \
-p 1521:1521 \
-e ORACLE_SID=[ORACLE_SID] \
-e ORACLE_PWD=[ORACLE_PASSWORD] \
-e ORACLE_CHARACTERSET=[CHARSET] \
-v /your/custom/path/oracle-19c/oradata/:/opt/oracle/oradata \
doctorkirk/oracle-19c
| Charset Value | Default * |
| WE8MSWIN1252 | Y |
| AL16UTF8 | N |
| US7ASCII | N |
* If omitted in docker run , the default characterset for this build will be WE8MSWIN1252.
Content type
Image
Digest
Size
4.8 GB
Last updated
over 5 years ago
docker pull doctorkirk/oracle-19c