Skip to content

Instantly share code, notes, and snippets.

@marweck
Created October 28, 2018 22:58
Show Gist options
  • Save marweck/9f7d1dfdc32cf631781c3b021ac90e18 to your computer and use it in GitHub Desktop.
Save marweck/9f7d1dfdc32cf631781c3b021ac90e18 to your computer and use it in GitHub Desktop.
Oracle docker container creation
#!/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