Oracle Database 18c (18.4.0) Express Edition (XE)
889
Simple Oracle DB image, ready to docker pull saguado/oracle:latest and use.
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.
Content type
Image
Digest
Size
3.8 GB
Last updated
almost 6 years ago
docker pull saguado/oracle