Created
October 28, 2018 22:58
-
-
Save marweck/9f7d1dfdc32cf631781c3b021ac90e18 to your computer and use it in GitHub Desktop.
Oracle docker container creation
This file contains hidden or 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
| #!/usr/bin/env bash | |
| docker run -d --name oracle -p 1521:1521 -p 49162:8080 \ | |
| -v ~/.data/oracle:/u01/app/oracle sath89/oracle-xe-11g | |
| # INFO: | |
| # https://github.com/MaksymBilenko/docker-oracle-xe-11g | |
| # | |
| # user/pass: system/oracle sys/oracle | |
| # | |
| # APEX: http://localhost:49162/apex | |
| # workspace: INTERNAL | |
| # user: ADMIN | |
| # password: oracle | |
| # | |
| # To improve query performance, run the command below in a oracle | |
| # session and restart the container. | |
| # ALTER SYSTEM SET disk_asynch_io = FALSE SCOPE = SPFILE; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment