Skip to content

IdelCoder/oracle11g

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Why Creating this repository

This repository is derived from jaspeen/oracle-11g. Thank jaspeen for his great job!!! Changes are made for:

  • resolving the problem that installation hangs at 76%.
  • adding vncserver dependencies to enable oracle dbca.

Notice

Image for running Oracle Database 11g Standard/Enterprise. Due to oracle license restrictions image is not contain database itself and will install it on first run from external directory.

This image for development use only

Usage

This repository has no registerd image in docker hub. You need to build image by yourself.

build image

cd into parent directory of oralce11g, then run command:

docker build -t <image_name> oracle11g

If succeeding, you will see this new image.

docker images

Note that if you run build in linux, some files may need to be converted to unix format, i.e.

dos2unix oracle11g/assets/*

get oracle database packages

Download database installation files from Oracle site and unpack them to install_folder. For instance, unpacking oracle packages gives you /home/oracle/install/database. Then install_folder should be /home/oracle/install/ .

run container

Run container and it will install oracle and create database:

docker run --privileged --name oracle11g -p 1521:1521 -v <install_folder>:/install <image_name>

build image with oracle

Then you can commit this container to have installed and configured oracle database:

docker commit oracle11g oracle11g-installed

output image to disk

docker save oracle11g-installed | gzip > oracle11g-installed.tar.gz

About

just do some modification on the jaspeen/oracle-11g

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published