Docker image for Oracle Database 11g
10K+
Build from this guide : https://github.com/jaspeen/oracle-11g
$ docker run -d -p 1521:1521 iatebes/oracle_11g
/opt/oracle
(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=<IP_DOCKER_HOST>)(PORT=<PORT_MAPPING>)))(CONNECT_DATA=(SERVICE_NAME=orcl)))
Example in my case with above docker run command : IP_DOCKER_HOST = 10.33.66.127 PORT_MAPPING = 1521
(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=10.33.66.127)(PORT=1521)))(CONNECT_DATA=(SERVICE_NAME=orcl)))
Optionally you can map dpdump folder to easy upload dumps:
docker run -d --privileged --name oracle11g -p 1521:1521 -v <local_dpdump>:/opt/oracle/dpdump iatebes/oracle_11g
To execute impdp/expdp just use docker exec command:
docker exec -it oracle11g impdp ..
Content type
Image
Digest
Size
2.4 GB
Last updated
about 10 years ago
docker pull iatebes/oracle_11g