exoplatform/oracle
An Oracle database image for testing purpose.
798
An Oracle database container for testing purpose
This is a Oracle image to easily build an Oracle environment for test purposes.
linuxamd64_12102_database_1of2.zip
and linuxamd64_12102_database_2of2.zip
in the installer
directorydocker build -t oracle:12rc1 .
. It will create the image and install Oracle on it. it can take some time.The Oracle instance can be launched with this command :
docker run --name my-database -p 1521:1521 -e ORACLE_SID=sid -e ORACLE_DATABSE=mydb -e ORACLE_USER=user -e ORACLE_PASSWORD=password -e ORACLE_DBA_PASSWORD=syspassword oracle:12rc1
The data are persisted on the directory /u01/app/oracle/data
. To keep them between 2 container restarts, add this parameter to the command line:
-v local_datadir:/u01/app/oracle/data
All these variables are mandatory :
docker pull exoplatform/oracle