Created
July 15, 2018 22:54
-
-
Save mguilherme/0eb98b4ecf9930cdb6bff4a47cc59d11 to your computer and use it in GitHub Desktop.
Oracle XE with Docker
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git clone [email protected]:oracle/docker-images.git | |
./buildDockerImage.sh -v 11.2.0.2 -x | |
docker run -d --name oracle -p 1521:1521 -p 5500:5500 -e ORACLE_PWD=mypassword --shm-size="2g" -v /opt/oracle/oradata:/opt/oracle/oradata oracle/database:11.2.0.2-xe | |
mvn install:install-file -Dfile=ojdbc8.jar -DgroupId=com.oracle.jdbc -DartifactId=ojdbc8 -Dversion=12.2.0.1 -Dpackaging=jar |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment