Modularization by using Oracle Database Containers and PDBs on Docker Engine

Jun 21, 2017 1:54:35 PM by Deepak Vohra


This is a companion discussion topic for the original entry at https://blog.toadworld.com/2017/06/21/modularization-by-using-oracle-database-containers-and-pdbs-on-docker-engine

For Oracle Database 19 c the procedure is the same except for some directory/file names being different. Copy 19c binaries zip LINUX.X64_193000_db_home.zip to 19.3.0 directory with:
cd docker-images/OracleDatabase/SingleInstance/dockerfiles/19.3.0. Run following command from directory docker-images/OracleDatabase/SingleInstance/dockerfiles: sudo ./buildContainerImage.sh -v 19.3.0 –e

Command to run image:
sudo docker run --name orclcdb -p 1521:1521 -p 5500:5500 -e ORACLE_SID=ORCLCDB -e ORACLE_PDB=ORCLPDB1 -e ORACLE_PWD=oracle oracle/database:19.3.0-ee