Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there official Docker image of Oracle XE database? [closed]

Tags:

docker

oracle

I have a simple question - is there any official, ready-to-go Docker image of Oracle XE database? I cannot find anything on Docker Hub, but maybe I'm searching it wrongly.

like image 688
wojtek1902 Avatar asked Mar 01 '19 08:03

wojtek1902


People also ask

Is there a Docker image for Oracle Database?

The Oracle Database Enterprise Edition Docker image contains Oracle Database 21c Enterprise Edition, with the option to deploy either Enterprise Edition or Standard Edition, running on Oracle Linux 7 (x86-64). This image contains a default database in a multitenant configuration, with one pluggable database.

Can Oracle DB be containerized?

Using orchestration and automation for containerized applications, developers can self-provision an Oracle database, thereby increasing flexibility and productivity while saving substantial time in creating a production copy for development and testing environments.

What is the Docker Oracle database?

Oracle Database Server 12c R2 is an industry leading relational database server. The Oracle Database Server Docker Image contains the Oracle Database Server 12.2. 0.1 Enterprise Edition running on Oracle Linux 7. This image contains a default database in a multi-tenant configuration with a single pluggable database.

Can we Dockerize database?

By dockerizing your database, you'll be able to duplicate those exact settings on any other machine. You can also instantly boot up an identical database on your machine at any time. A non-containerized local database gives you none of these benefits.

How to install Oracle XE on Linux with Docker?

Go to Oracle XE Download Page. Download the version for Linux with .rpm extension. Clone the official Oracle repo from GitHub containing the Dockerfiles. Copy the Oracle XE to the right folder, here I’m assuming version 18.4.0 and that you cloned the repo to the home folder. Enter the folder with the script to build the image:

Can I run Oracle Database Express Edition in a docker container?

Oracle Database Express Edition Container / Docker images. The images are compatible with podman and docker. You can use podman or docker interchangeably. Run a new database container (data is removed when the container is removed, but kept throughout container restarts):

Does Oracle’s container registry host an Xe Docker image?

I too needed a quick and easy XE Docker image, yet Oracle’s Container Registry did not host an XE image yet (it does now, since about two weeks ago), and all images on Docker Hub that I could find were old 11g R2 XE ones.

How to run Oracle XE images on Apple M chips via Docker?

docker exec <container name|id> resetPassword <your password> Currently, there is no Oracle Database port for ARM chips, hence Oracle XE images cannot run on the new Apple M chips via Docker Desktop. Fortunately, there are other technologies that can spin up x86_64 software on Apple M chips, such as colima.


2 Answers

This seems to be Oracle's official repository for docker - https://github.com/oracle/docker-images More details here - https://blogs.oracle.com/oraclemagazine/deliver-oracle-database-18c-express-edition-in-containers

like image 186
shaktisinghr Avatar answered Oct 23 '22 02:10

shaktisinghr


there is no official docker image available but you can refer following git repo to make it

https://github.com/freneticdisc/oracle-blog-examples/tree/master/Docker%20-%20Oracle%20Database

or

https://github.com/wnameless/docker-oracle-xe-11g

like image 40
divyang4481 Avatar answered Oct 23 '22 03:10

divyang4481