Created
May 11, 2020 14:38
-
-
Save enesusta/dce8e43805f4cfb644e511d5a06a5b09 to your computer and use it in GitHub Desktop.
Docker Oracle 12c Container
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
version: "3" | |
services: | |
oracle_db: | |
container_name: oracle_db | |
image: store/oracle/database-enterprise:12.2.0.1 | |
ports: | |
- 1521:1521 | |
- 5500:5500 | |
environment: | |
ORACLE_PWD: <your-password> | |
# docker exec -it oracle_db bash -c "source /home/oracle/.bashrc; sqlplus /nolog" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment