Skip to content

Instantly share code, notes, and snippets.

@iamitshri
Last active October 23, 2018 02:53
Show Gist options
  • Save iamitshri/4d64b84b586343f590706439cb6a21f0 to your computer and use it in GitHub Desktop.
Save iamitshri/4d64b84b586343f590706439cb6a21f0 to your computer and use it in GitHub Desktop.
Get local Oracle on mac book
-- https://oraclespin.com/2018/03/30/docker-installation-of-oracle-database-12c-on-mac/
-- docker to create oracle: https://hub.docker.com/r/sath89/oracle-12c/
-- follow this help to get oracle up and running in docker: https://asciinema.org/a/45878
~$ docker run -d -p 8080:8080 -p 1521:1521 sath89/oracle-12c
Grant all privileges to user in oracle
grant all privileges to userName identified by password;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment