Skip to content

Instantly share code, notes, and snippets.

@nicc777
Created March 25, 2021 05:38
Show Gist options
  • Save nicc777/bf8d36e02ae66474c6cacb5b2c9df496 to your computer and use it in GitHub Desktop.
Save nicc777/bf8d36e02ae66474c6cacb5b2c9df496 to your computer and use it in GitHub Desktop.
Running Oracle XE in Docker (local testing)

References:

My current docker command to start a new container:

docker run -d \
-p 127.0.0.1:49161:1521 \
-p 8085:8080 \
-e ORACLE_ALLOW_REMOTE=true \
-e ORACLE_DISABLE_ASYNCH_IO=true \
-e ORACLE_ENABLE_XDB=true \
oracleinanutshell/oracle-xe-11g

Takes a bit of time to fully start up, so be patient...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment