Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 944 Bytes

README.md

File metadata and controls

21 lines (14 loc) · 944 Bytes

docker-oracledb21c-xe

Temporary Docker files and scripts for Oracle Database 21c Express Edition.

The scripts are modified versions of Oracle's official Dockerfiles and scripts for Oracle Database 18c Express Edition that you can find here.

This repository will be archived as soon as Oracle releases the updated files for this version of the database.

To build the Docker image, run the command:

docker build -t oracle/database:21.3.0-xe .

To run a container based on this image, run the command:

CONTAINER_NAME=myxedb && \
docker run -d -p 1521:1521 --name $CONTAINER_NAME oracle/database:21.3.0-xe

Some of the Docker run options listed here could be used too.