├── MySQL ├── 5.5 │ ├── Dockerfile │ └── docker-entrypoint.sh ├── 5.6 │ ├── Dockerfile │ └── docker-entrypoint.sh ├── 5.7 │ ├── Dockerfile │ └── docker-entrypoint.sh └── README.md ├── OracleCoherence ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── bin │ ├── buildDockerImage.sh │ ├── dockCacheServer.sh │ ├── dockCoherenceConsole.sh │ └── setDockerEnv.sh ├── config │ ├── fmw_12.1.3.0.0_coherence_Disk1_1of1.zip.download │ ├── install.file │ ├── jdk-8u25-linux-x64.rpm.download │ └── oraInst.loc ├── example-grid │ ├── README.md │ ├── example-config.xml │ └── tangosol-coherence-override.xml ├── fmw_12.1.3.0.0_coherence_Disk1_1of1.zip.download └── jdk-8u25-linux-x64.rpm.download ├── OracleSOA ├── LICENSE ├── README.md ├── dockerfiles │ ├── 12.1.3 │ │ ├── .gitignore │ │ ├── Checksum.developer │ │ ├── Dockerfile.developer │ │ ├── fmw_12.1.3.0.0_soaqs_Disk1_1of1.zip.download │ │ ├── install.file │ │ ├── jdk-7u75-linux-x64.rpm.download │ │ └── oraInst.loc │ └── buildDockerImage.sh └── samples │ ├── 12c-domain │ ├── Dockerfile │ ├── README.md │ └── container-scripts │ │ └── create-soa-domain.py │ ├── clean-up-docker.sh │ └── rm-containers.sh ├── OracleWebLogic ├── LICENSE ├── README.md ├── dockerfiles │ ├── 12.1.3 │ │ ├── .gitignore │ │ ├── Checksum.developer │ │ ├── Checksum.generic │ │ ├── Dockerfile.developer │ │ ├── Dockerfile.generic │ │ ├── fmw_12.1.3.0.0_wls.jar.download │ │ ├── install.file │ │ ├── jdk-7u75-linux-x64.rpm.download │ │ ├── oraInst.loc │ │ └── wls1213_dev.zip.download │ └── buildDockerImage.sh └── samples │ ├── 12c-domain │ ├── Dockerfile │ ├── README.md │ └── container-scripts │ │ ├── add-machine.py │ │ ├── add-server.py │ │ ├── commEnv.sh │ │ ├── create-wls-domain.py │ │ ├── createMachine.sh │ │ ├── createServer.sh │ │ └── jaxrs2-template.jar │ ├── clean-up-docker.sh │ └── rm-containers.sh └── README.md /MySQL/5.5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/MySQL/5.5/Dockerfile -------------------------------------------------------------------------------- /MySQL/5.5/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/MySQL/5.5/docker-entrypoint.sh -------------------------------------------------------------------------------- /MySQL/5.6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/MySQL/5.6/Dockerfile -------------------------------------------------------------------------------- /MySQL/5.6/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/MySQL/5.6/docker-entrypoint.sh -------------------------------------------------------------------------------- /MySQL/5.7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/MySQL/5.7/Dockerfile -------------------------------------------------------------------------------- /MySQL/5.7/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/MySQL/5.7/docker-entrypoint.sh -------------------------------------------------------------------------------- /MySQL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/MySQL/README.md -------------------------------------------------------------------------------- /OracleCoherence/.gitignore: -------------------------------------------------------------------------------- 1 | fmw_12.1.3.0.0_coherence_Disk1_1of1.zip 2 | jdk-8u25-linux-x64.rpm 3 | -------------------------------------------------------------------------------- /OracleCoherence/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleCoherence/Dockerfile -------------------------------------------------------------------------------- /OracleCoherence/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleCoherence/LICENSE -------------------------------------------------------------------------------- /OracleCoherence/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleCoherence/README.md -------------------------------------------------------------------------------- /OracleCoherence/bin/buildDockerImage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleCoherence/bin/buildDockerImage.sh -------------------------------------------------------------------------------- /OracleCoherence/bin/dockCacheServer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleCoherence/bin/dockCacheServer.sh -------------------------------------------------------------------------------- /OracleCoherence/bin/dockCoherenceConsole.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleCoherence/bin/dockCoherenceConsole.sh -------------------------------------------------------------------------------- /OracleCoherence/bin/setDockerEnv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleCoherence/bin/setDockerEnv.sh -------------------------------------------------------------------------------- /OracleCoherence/config/fmw_12.1.3.0.0_coherence_Disk1_1of1.zip.download: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OracleCoherence/config/install.file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleCoherence/config/install.file -------------------------------------------------------------------------------- /OracleCoherence/config/jdk-8u25-linux-x64.rpm.download: -------------------------------------------------------------------------------- 1 | Download this package from Oracle. 2 | -------------------------------------------------------------------------------- /OracleCoherence/config/oraInst.loc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleCoherence/config/oraInst.loc -------------------------------------------------------------------------------- /OracleCoherence/example-grid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleCoherence/example-grid/README.md -------------------------------------------------------------------------------- /OracleCoherence/example-grid/example-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleCoherence/example-grid/example-config.xml -------------------------------------------------------------------------------- /OracleCoherence/example-grid/tangosol-coherence-override.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleCoherence/example-grid/tangosol-coherence-override.xml -------------------------------------------------------------------------------- /OracleCoherence/fmw_12.1.3.0.0_coherence_Disk1_1of1.zip.download: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleCoherence/fmw_12.1.3.0.0_coherence_Disk1_1of1.zip.download -------------------------------------------------------------------------------- /OracleCoherence/jdk-8u25-linux-x64.rpm.download: -------------------------------------------------------------------------------- 1 | Download this package from Oracle. 2 | -------------------------------------------------------------------------------- /OracleSOA/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleSOA/LICENSE -------------------------------------------------------------------------------- /OracleSOA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleSOA/README.md -------------------------------------------------------------------------------- /OracleSOA/dockerfiles/12.1.3/.gitignore: -------------------------------------------------------------------------------- 1 | fmw_12.1.3.0.0_soaqs_Disk1_1of1.zip 2 | jdk-7u75-linux-x64.rpm 3 | -------------------------------------------------------------------------------- /OracleSOA/dockerfiles/12.1.3/Checksum.developer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleSOA/dockerfiles/12.1.3/Checksum.developer -------------------------------------------------------------------------------- /OracleSOA/dockerfiles/12.1.3/Dockerfile.developer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleSOA/dockerfiles/12.1.3/Dockerfile.developer -------------------------------------------------------------------------------- /OracleSOA/dockerfiles/12.1.3/fmw_12.1.3.0.0_soaqs_Disk1_1of1.zip.download: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleSOA/dockerfiles/12.1.3/fmw_12.1.3.0.0_soaqs_Disk1_1of1.zip.download -------------------------------------------------------------------------------- /OracleSOA/dockerfiles/12.1.3/install.file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleSOA/dockerfiles/12.1.3/install.file -------------------------------------------------------------------------------- /OracleSOA/dockerfiles/12.1.3/jdk-7u75-linux-x64.rpm.download: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleSOA/dockerfiles/12.1.3/jdk-7u75-linux-x64.rpm.download -------------------------------------------------------------------------------- /OracleSOA/dockerfiles/12.1.3/oraInst.loc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleSOA/dockerfiles/12.1.3/oraInst.loc -------------------------------------------------------------------------------- /OracleSOA/dockerfiles/buildDockerImage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleSOA/dockerfiles/buildDockerImage.sh -------------------------------------------------------------------------------- /OracleSOA/samples/12c-domain/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleSOA/samples/12c-domain/Dockerfile -------------------------------------------------------------------------------- /OracleSOA/samples/12c-domain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleSOA/samples/12c-domain/README.md -------------------------------------------------------------------------------- /OracleSOA/samples/12c-domain/container-scripts/create-soa-domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleSOA/samples/12c-domain/container-scripts/create-soa-domain.py -------------------------------------------------------------------------------- /OracleSOA/samples/clean-up-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleSOA/samples/clean-up-docker.sh -------------------------------------------------------------------------------- /OracleSOA/samples/rm-containers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleSOA/samples/rm-containers.sh -------------------------------------------------------------------------------- /OracleWebLogic/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleWebLogic/LICENSE -------------------------------------------------------------------------------- /OracleWebLogic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleWebLogic/README.md -------------------------------------------------------------------------------- /OracleWebLogic/dockerfiles/12.1.3/.gitignore: -------------------------------------------------------------------------------- 1 | fmw_12.1.3.0.0_wls.jar 2 | wls1213_dev.zip 3 | jdk-7u75-linux-x64.rpm 4 | -------------------------------------------------------------------------------- /OracleWebLogic/dockerfiles/12.1.3/Checksum.developer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleWebLogic/dockerfiles/12.1.3/Checksum.developer -------------------------------------------------------------------------------- /OracleWebLogic/dockerfiles/12.1.3/Checksum.generic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleWebLogic/dockerfiles/12.1.3/Checksum.generic -------------------------------------------------------------------------------- /OracleWebLogic/dockerfiles/12.1.3/Dockerfile.developer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleWebLogic/dockerfiles/12.1.3/Dockerfile.developer -------------------------------------------------------------------------------- /OracleWebLogic/dockerfiles/12.1.3/Dockerfile.generic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleWebLogic/dockerfiles/12.1.3/Dockerfile.generic -------------------------------------------------------------------------------- /OracleWebLogic/dockerfiles/12.1.3/fmw_12.1.3.0.0_wls.jar.download: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleWebLogic/dockerfiles/12.1.3/fmw_12.1.3.0.0_wls.jar.download -------------------------------------------------------------------------------- /OracleWebLogic/dockerfiles/12.1.3/install.file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleWebLogic/dockerfiles/12.1.3/install.file -------------------------------------------------------------------------------- /OracleWebLogic/dockerfiles/12.1.3/jdk-7u75-linux-x64.rpm.download: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleWebLogic/dockerfiles/12.1.3/jdk-7u75-linux-x64.rpm.download -------------------------------------------------------------------------------- /OracleWebLogic/dockerfiles/12.1.3/oraInst.loc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleWebLogic/dockerfiles/12.1.3/oraInst.loc -------------------------------------------------------------------------------- /OracleWebLogic/dockerfiles/12.1.3/wls1213_dev.zip.download: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleWebLogic/dockerfiles/12.1.3/wls1213_dev.zip.download -------------------------------------------------------------------------------- /OracleWebLogic/dockerfiles/buildDockerImage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleWebLogic/dockerfiles/buildDockerImage.sh -------------------------------------------------------------------------------- /OracleWebLogic/samples/12c-domain/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleWebLogic/samples/12c-domain/Dockerfile -------------------------------------------------------------------------------- /OracleWebLogic/samples/12c-domain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleWebLogic/samples/12c-domain/README.md -------------------------------------------------------------------------------- /OracleWebLogic/samples/12c-domain/container-scripts/add-machine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleWebLogic/samples/12c-domain/container-scripts/add-machine.py -------------------------------------------------------------------------------- /OracleWebLogic/samples/12c-domain/container-scripts/add-server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleWebLogic/samples/12c-domain/container-scripts/add-server.py -------------------------------------------------------------------------------- /OracleWebLogic/samples/12c-domain/container-scripts/commEnv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleWebLogic/samples/12c-domain/container-scripts/commEnv.sh -------------------------------------------------------------------------------- /OracleWebLogic/samples/12c-domain/container-scripts/create-wls-domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleWebLogic/samples/12c-domain/container-scripts/create-wls-domain.py -------------------------------------------------------------------------------- /OracleWebLogic/samples/12c-domain/container-scripts/createMachine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleWebLogic/samples/12c-domain/container-scripts/createMachine.sh -------------------------------------------------------------------------------- /OracleWebLogic/samples/12c-domain/container-scripts/createServer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleWebLogic/samples/12c-domain/container-scripts/createServer.sh -------------------------------------------------------------------------------- /OracleWebLogic/samples/12c-domain/container-scripts/jaxrs2-template.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleWebLogic/samples/12c-domain/container-scripts/jaxrs2-template.jar -------------------------------------------------------------------------------- /OracleWebLogic/samples/clean-up-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleWebLogic/samples/clean-up-docker.sh -------------------------------------------------------------------------------- /OracleWebLogic/samples/rm-containers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/OracleWebLogic/samples/rm-containers.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeqo/oracle-docker-images/HEAD/README.md --------------------------------------------------------------------------------