Sign inSign up

saguado/oracle

By saguado

Updated almost 6 years ago

Oracle Database 18c (18.4.0) Express Edition (XE)

Image
0

889

saguado/oracle repository overview

oracle

Simple Oracle DB image, ready to docker pull saguado/oracle:latest and use.

How to build and run it by yourself

Follow the instructions of this repo, or in summary:

# Build
git clone https://github.com/oracle/docker-images.git
cd  docker-images/OracleDatabase/SingleInstance/dockerfiles
./buildDockerImage.sh -v 18.4.0 -x

# Run and configure
docker run --name oracledb --init                           \
  -p 1551:1521 -p 5500:5500                                 \
  -e ORACLE_PWD=passw0rd -e ORACLE_CHARACTERSET=utf8        \
  -v $STARTUP:/docker-entrypoint-initdb.d/startup/          \
  --memory=2147483648                                       \
  oracle/database:18.4.0-xe

Where $STARTUP is a variable that points to the directory where the database creation scripts are located.

Tag summary

Content type

Image

Digest

Size

3.8 GB

Last updated

almost 6 years ago

docker pull saguado/oracle