- Notifications
You must be signed in to change notification settings - Fork9
Set of scripts for creating&maintaining docker images for minimal Oracle databases
License
utPLSQL/docker-scripts
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
The docker scripts are based on theOracle docker-images repository but modified so that resulting image is small enough to be used with Travis CI.
To use the scripts you need to download the archive of the desired DB version from the Oracle website.
To build an image go to the folder of desired DB version and execute
docker build --no-cache --force-rm --squash -t ut-img12c-r2-se2 .
ut-img12c-r2-se2 - is the image name.
Don't forget the dot(!) at the end of the command
When the image is ready all you need is to publish it to yourprivate repository:
docker tag ut-img12c-r2-se2 utplsqlv3/oracledb:12c-r2-se2docker logindocker push utplsqlv3/oracledb:12c-r2-se2
Now you can pull the image in your builds.
The password for SYS/SYSTEM accounts is "oracle"PDB datafiles are stored at "/opt/oracle/oradata/pdbs" which is published as a volume you can define on docker start.
Thesmall image folders contain a bare-minimum oracle database instance needed to run utPLSQL. Those databases are not fully functional and some features of ORacle database may simply not work properly.
Do not use any of those images for your production environments!
In case of any issues you have two choices:
- switch to regular image
- change the image build configuration yourself
The image scrips are provided as they are, no support or reliability is offered. Use at your own risk.
For small images you have an option to choose between PDB (Multi-tenant database) or non-PDB - (Single-tenant) database.
Edit theDockerfile
before build and set the flag:CREATE_PDB="false"
orCREATE_PDB="true"
docker build --no-cache --force-rm --squash -t utplsqlv3/oracledb:12c-r1-se2 -f Dockerfile ./12.1.0.2> dockerBuild.logdocker build --no-cache --force-rm --squash -t utplsqlv3/oracledb:12c-r2-se2 -f Dockerfile ./12.2.0.1> dockerBuild.logdocker build --no-cache --force-rm --squash -t utplsqlv3/oracledb:18c-se2 -f Dockerfile ./18.3> dockerBuild.logdocker build --no-cache --force-rm --squash -t utplsqlv3/oracledb:12c-r1-se2-small -f Dockerfile_continue ./12.1.0.2-small> dockerBuild.logdocker build --no-cache --force-rm --squash -t utplsqlv3/oracledb:12c-r2-se2-small -f Dockerfile_continue ./12.2.0.1-small> dockerBuild.logdocker build --no-cache --force-rm --squash -t utplsqlv3/oracledb:18c-se2-small -f Dockerfile_continue ./18.3-small> dockerBuild.logdocker build --no-cache --force-rm --squash -t utplsqlv3/oracledb:19c-se2-small -f Dockerfile_continue ./19.3-small> dockerBuild.log
docker logindocker push utplsqlv3/oracledb:12c-r1-se2docker push utplsqlv3/oracledb:12c-r2-se2docker push utplsqlv3/oracledb:18c-se2docker push utplsqlv3/oracledb:12c-r1-se2-smalldocker push utplsqlv3/oracledb:12c-r2-se2-smalldocker push utplsqlv3/oracledb:18c-se2-smalldocker push utplsqlv3/oracledb:19c-se2-small
This is optional as images would get pull ondocker run
if they are not available locally
docker logindocker pull utplsqlv3/oracledb:12c-r1-se2docker pull utplsqlv3/oracledb:12c-r2-se2docker pull utplsqlv3/oracledb:18c-se2docker pull utplsqlv3/oracledb:12c-r1-se2-smalldocker pull utplsqlv3/oracledb:12c-r2-se2-smalldocker pull utplsqlv3/oracledb:18c-se2-smalldocker pull utplsqlv3/oracledb:19c-se2-small
docker image ls --all
docker image rm utplsqlv3/oracledb:12c-r1-se2
docker run -d --name 12c-r1-se2 -p 1531:1521 --expose=1521 utplsqlv3/oracledb:12c-r1-se2docker run -d --name 12c-r2-se2 -p 1541:1521 --expose=1521 utplsqlv3/oracledb:12c-r2-se2docker run -d --name 18c-se2 -p 1551:1521 --expose=1521 utplsqlv3/oracledb:18c-se2docker run -d --name 12c-r1-se2-small -p 1531:1521 --expose=1521 utplsqlv3/oracledb:12c-r1-se2-smalldocker run -d --name 12c-r2-se2-small -p 1541:1521 --expose=1521 utplsqlv3/oracledb:12c-r2-se2-smalldocker run -d --name 18c-se2-small -p 1551:1521 --expose=1521 utplsqlv3/oracledb:18c-se2-smalldocker run -d --name 19c-se2-small -p 1551:1521 --expose=1521 utplsqlv3/oracledb:19c-se2-small
docker stop 12c-r1-se2 docker stop 12c-r2-se2 docker stop 18c-se2 docker stop 12c-r1-se2-smalldocker stop 12c-r2-se2-smalldocker stop 18c-se2-smalldocker stop 19c-se2-small
docker start 12c-r1-se2 docker start 12c-r2-se2 docker start 18c-se2 docker start 12c-r1-se2-smalldocker start 12c-r2-se2-smalldocker start 18c-se2-smalldocker start 19c-se2-small
docker rm 12c-r1-se2 docker rm 12c-r2-se2 docker rm 18c-se2 docker rm 12c-r1-se2-smalldocker rm 12c-r2-se2-smalldocker rm 18c-se2-smalldocker rm 19c-se2-small
About
Set of scripts for creating&maintaining docker images for minimal Oracle databases
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Releases
Packages0
Contributors2
Uh oh!
There was an error while loading.Please reload this page.