# jaspeen-oracle-11g **Repository Path**: OSS-STUDIO/jaspeen-oracle-11g ## Basic Information - **Project Name**: jaspeen-oracle-11g - **Description**: https://github.com/jaspeen/oracle-11g 镜像 - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-11-23 - **Last Updated**: 2023-11-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Image for running Oracle Database 11g Standard/Enterprise. Due to oracle license restrictions image is not contain database itself and will install it on first run from external directory. ``This image for development use only`` # Usage Download database installation files from [Oracle site](http://www.oracle.com/technetwork/database/in-memory/downloads/index.html) and unpack them to **install_folder**. Run container and it will install oracle and create database: ```sh docker run --privileged --name oracle11g -p 1521:1521 -v :/install jaspeen/oracle-11g ``` Then you can commit this container to have installed and configured oracle database: ```sh docker commit oracle11g oracle11g-installed ``` Database located in **/opt/oracle** folder OS users: * root/install * oracle/install DB users: * SYS/oracle Optionally you can map dpdump folder to easy upload dumps: ```sh docker run --privileged --name oracle11g -p 1521:1521 -v :/install -v :/opt/oracle/dpdump jaspeen/oracle-11g ``` To execute impdp/expdp just use docker exec command: ```sh docker exec -it oracle11g impdp .. ```