Skip to content

Latest commit

 

History

History
52 lines (36 loc) · 1.42 KB

README.md

File metadata and controls

52 lines (36 loc) · 1.42 KB

docker-oracle-xe-11g

Oracle Express Edition 11g Release 2 on Debian Jessie 8.6

Based on wnameless/oracle-xe-11g/ docker image

This Dockerfile is a trusted build of Docker Registry.

Installation(with Debian Jessie 8.6)

docker pull brunodias20/oracle-11g_debian

Run with 1521 ports opened:

docker run -p 1521:1521 brunodias20/oracle-11g_debian

Run this, if you want the database to be connected remotely:

docker run -d -p 1521:1521 -e ORACLE_ALLOW_REMOTE=true brunodias20/oracle-11g_debian

Password for SYS & SYSTEM

oracle

Password for dbuser

us3rdb

Support custom DB Initialization, create db for example

# Dockerfile 
FROM brunodias20/oracle-11g_debian

ADD create-db.sql /docker-entrypoint-initdb.d/

How to contribute?

Check the issues section: Issues

Open new issues or make a PR!

Enjoy!