Running Oracle Database 23c Free Release in Docker Container

Share on:

docker

I write this blog to test one of the Oracle-provided docker images for database 23c.

I found it very easy to set up a quick database environment to do some tests. You don’t need any virtual machine, Vagrant or anything to set up this.

The Oracle Database 23c Free server Container image contains a pre-built database running on Oracle Linux 8, so the startup time is very fast.

This image contains a default database in a multitenant configuration with one pluggable database.

Pre-requisite: You should have docker installed on your system.   

Here is the link for the Oracle registry where you can find docker images.

docker2

 

You can use the below command to pull the image and then run it.

  docker pull       container-registry.oracle.com/database/free:latest     

Or I used the direct Docker run command and provide variables in the command.

  docker run -d --name myoradb1 -p 1521:1521 -p 5500:5500 -e ORACLE_PWD=Welcome1 -e ORACLE_CHARACTERSET=AL32UTF8 -v ${PWD}/opt/oracle/oradata:/opt/oracle/oradata container-registry.oracle.com/database/free:latest 

This command will pull the image and run it.

docker3

 

In the above command

container name = myoradb1
Port mapping = 1521:1521
Port mapping = 5500:5500
Set env. variable = ORACLE_CHARACTERSET=AL32UTF8
Set volume = ${PWD}/opt/oracle/oradata:/opt/oracle/oradata
Container Registry = container-registry.oracle.com/database/free:latest

Once this is done, you can see the image using the below command.

docker4

 

I used docker desktop on my Windows machine, so we can also see the image on the Docker Desktop

docker5

 

Now let me start the container in interactive mode to login into Database.

docker6

 

Connect as you see in my above docker command I used port mapping, so we can connect this DB

From any external tool like SQL developer, toad, etc. from a laptop

docker7

Share on:

More from this Author

How to Delete Non-CDB or 11g Database or 11g DB Home from ExaCC

Objective: How to delete/remove Non-CDB or 11g database or database home from ExaCC   Prerequisite: Should have Non-CDB or 11g home and database on ... Read More

Automation – Apply Database Release Update Patch in Oracle 19c using Ansible

Introduction: In this blog, I will show you how to use Ansible to automate Oracle database patching. I applied the latest Oracle 19c RU Patch ... Read More

Back to Top