Sign inSign up

xuxuclassmate/oracle

By xuxuclassmate

•Updated almost 3 years ago

This image is modified based on the Oracle official image Version 11.2.0.2.0 - Production

Image
0

1.1K

xuxuclassmate/oracle repository overview

This image is modified based on the Oracle official image Version 11.2.0.2.0 - Production DBMS: Oracle (ver. Oracle Database 11g Express Edition Release 11.2.0.2.0 - 64bit Production) Case sensitivity: plain=upper, delimited=exact Driver: Oracle JDBC driver (ver. 21.5.0.0.0, JDBC4.3)

⁠from : oracleinanutshell⁠

⁠Use method, please follow this order

⁠1、Download

docker pull xuxuclassmate/oracle

⁠2、Start Container

⁠1、Run with 1521 port opened:
docker run -d -p 1521:1521 --name oracle xuxuclassmate/oracle
⁠2、Run this, if you want the database to be connected remotely:
docker run -d -p 1521:1521 -e ORACLE_ALLOW_REMOTE=true --name oracle xuxuclassmate/oracle
⁠3、For performance concern, you may want to disable the disk asynch IO:
docker run -d -p 1521:1521 -e ORACLE_DISABLE_ASYNCH_IO=true --name oracle xuxuclassmate/oracle
⁠4、Enable XDB user with default password: xdb, run this:
docker run -d -p 1521:1521 -e ORACLE_ENABLE_XDB=true --name oracle xuxuclassmate/oracle
⁠5、For APEX user:
docker run -d -p 1521:1521 -p 8080:8080 --name oracle xuxuclassmate/oracle
# Login http://localhost:8080/apex/apex_admin with following credential:
username: ADMIN
password: admin

Support custom DB Initialization and running shell scripts

# Dockerfile
FROM oracleinanutshell/oracle-xe-11g

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

⁠3、Login OracleDB

docker exec -it oracle bash

sqlplus

⁠Default SID: XE
⁠Default Account : system
⁠Default Password :oracle

Tag summary

Content type

Image

Digest

sha256:8b740e77d…

Size

613.9 MB

Last updated

almost 3 years ago

docker pull xuxuclassmate/oracle