/docker-oracle-12c

:whale: Docker image with Oracle Database 12c on board

Primary LanguageShellApache License 2.0Apache-2.0

Oracle Standard Edition 12c Release 1

Проверкa:

Installation

ORACLE DB:

docker pull war1s/tz

Run with 8080 and 1521 ports opened:

docker run -d -p 8080:8080 -p 1521:1521 war1s/tz

Run with data on host and reuse it:

docker run -d -p 8080:8080 -p 1521:1521 -v /my/oracle/data:/u01/app/oracle war1s/tz

Run with Custom DBCA_TOTAL_MEMORY (in Mb):

docker run -d -p 8080:8080 -p 1521:1521 -v /my/oracle/data:/u01/app/oracle -e DBCA_TOTAL_MEMORY=1024 war1s/tz

Connect database with following setting:

hostname: localhost
port: 1521
sid: xe
service name: xe
username: system
password: oracle

To connect using sqlplus:

sqlplus system/oracle@//localhost:1521/xe

Password for SYS & SYSTEM:

oracle

LOGS:

Installation

Monitoring db:

docker pull war1s/testin_db

Run:

docker run war1s/testin_db