This image is modified based on the Oracle official image Version 11.2.0.2.0 - Production
1.1K
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)
docker pull xuxuclassmate/oracle
docker run -d -p 1521:1521 --name oracle xuxuclassmate/oracle
docker run -d -p 1521:1521 -e ORACLE_ALLOW_REMOTE=true --name oracle xuxuclassmate/oracle
docker run -d -p 1521:1521 -e ORACLE_DISABLE_ASYNCH_IO=true --name oracle xuxuclassmate/oracle
docker run -d -p 1521:1521 -e ORACLE_ENABLE_XDB=true --name oracle xuxuclassmate/oracle
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/
docker exec -it oracle bash
sqlplus
Content type
Image
Digest
sha256:8b740e77d…
Size
613.9 MB
Last updated
almost 3 years ago
docker pull xuxuclassmate/oracle