Skip to content
This repository was archived by the owner on Nov 21, 2024. It is now read-only.

simplybusiness/docker-oracle-xe-11g

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

docker-oracle-xe-11g

(forked from wnameless/docker-oracle-xe-11g)

Oracle Express Edition 11g Release 2 on Ubuntu 16.04 LTS

This Dockerfile is a trusted build of Docker Registry.

Installation(with Ubuntu 16.04)

docker pull simplybusiness/oracle-xe-11g 

Building image locally

git clone git@github.com:simplybusiness/docker-oracle-xe-11g.git cd docker-oracle-xe-11g docker build -t simplybusiness/oracle-xe-11g:local . 

Running

Run with 22, 1521, 8080 ports opened:

docker run -d -p 49160:22 -p 49161:1521 -p 49162:8080 simplybusiness/oracle-xe-11g 

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

docker run -d -p 49160:22 -p 49161:1521 -e ORACLE_ALLOW_REMOTE=true simplybusiness/oracle-xe-11g 

Connect database with following setting:

hostname: localhost port: 49161 sid: xe username: system password: oracle 

Password for SYS & SYSTEM

oracle 

Login by SSH

ssh root@localhost -p 49160 password: admin 

Login with sqlplus installed locally

sqlplus system/oracle@localhost:49161/xe 

Login with sqlplus from running container

docker exec -ti <container_id> bash sqlplus system/oracle@localhost/xe 

Login by Web

http://localhost:49162/apex/ 

Support custom DB Initialization

Dockerfile

FROM simplybusiness/oracle-xe-11g

ADD init.sql /docker-entrypoint-initdb.d/

About

Dockerfile of Oracle Database Express Edition 11g Release 2

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 100.0%