Skip to content

Instantly share code, notes, and snippets.

@tthtlc
Created July 25, 2018 03:49
Show Gist options
  • Save tthtlc/acfd88df7f0ccce768e4e723c11136df to your computer and use it in GitHub Desktop.
Save tthtlc/acfd88df7f0ccce768e4e723c11136df to your computer and use it in GitHub Desktop.
Result of "git clone https://github.com/oracle/docker-images.git"
/home/tteikhua/docker-images/OracleDatabase/SingleInstance>tree
.
├── COPYRIGHT
├── dockerfiles
│   ├── 11.2.0.2
│   │   ├── checkDBStatus.sh
│   │   ├── Checksum.xe
│   │   ├── Dockerfile.xe
│   │   ├── runOracle.sh
│   │   ├── setPassword.sh
│   │   └── xe.rsp
│   ├── 12.1.0.2
│   │   ├── checkDBStatus.sh
│   │   ├── checkSpace.sh
│   │   ├── Checksum.ee
│   │   ├── Checksum.se2
│   │   ├── createDB.sh
│   │   ├── dbca.rsp.tmpl
│   │   ├── db_inst.rsp
│   │   ├── Dockerfile.ee
│   │   ├── Dockerfile.se2
│   │   ├── installDBBinaries.sh
│   │   ├── installPerl.sh
│   │   ├── runOracle.sh
│   │   ├── runUserScripts.sh
│   │   ├── setPassword.sh
│   │   ├── setupLinuxEnv.sh
│   │   └── startDB.sh
│   ├── 12.2.0.1
│   │   ├── checkDBStatus.sh
│   │   ├── checkSpace.sh
│   │   ├── Checksum.ee
│   │   ├── Checksum.se2
│   │   ├── createDB.sh
│   │   ├── dbca.rsp.tmpl
│   │   ├── db_inst.rsp
│   │   ├── Dockerfile.ee
│   │   ├── Dockerfile.se2
│   │   ├── installDBBinaries.sh
│   │   ├── linuxx64_12201_database.zip
│   │   ├── runOracle.sh
│   │   ├── runUserScripts.sh
│   │   ├── setPassword.sh
│   │   ├── setupLinuxEnv.sh
│   │   └── startDB.sh
│   ├── 18.3.0
│   │   ├── checkDBStatus.sh
│   │   ├── checkSpace.sh
│   │   ├── Checksum.ee
│   │   ├── Checksum.se2
│   │   ├── createDB.sh
│   │   ├── dbca.rsp.tmpl
│   │   ├── db_inst.rsp
│   │   ├── Dockerfile.ee
│   │   ├── Dockerfile.se2
│   │   ├── installDBBinaries.sh
│   │   ├── runOracle.sh
│   │   ├── runUserScripts.sh
│   │   ├── setPassword.sh
│   │   ├── setupLinuxEnv.sh
│   │   └── startDB.sh
│   ├── buildDockerImage.sh
│   └── myoracle_docker.sh
├── FAQ.md
├── LICENSE
├── README.md
├── samples
│   ├── 12102-docker-compose
│   │   └── docker-compose.yml
│   ├── 12201-docker-compose
│   │   └── docker-compose.yml
│   ├── 1830-docker-compose
│   │   └── docker-compose.yml
│   ├── applypatch
│   │   ├── 12.1.0.2
│   │   │   ├── Dockerfile.ee
│   │   │   ├── Dockerfile.se2
│   │   │   └── patches
│   │   │   ├── 001
│   │   │   └── applyPatches.sh
│   │   ├── 12.2.0.1
│   │   │   ├── Dockerfile.ee
│   │   │   ├── Dockerfile.se2
│   │   │   └── patches
│   │   │   ├── 001
│   │   │   └── applyPatches.sh
│   │   ├── buildPatchedDockerImage.sh
│   │   └── README.md
│   ├── customdb
│   │   └── README.md
│   ├── customscripts
│   │   ├── 01_shellExample.sh
│   │   ├── 02_createUser.sql
│   │   ├── 03_addTable.sql
│   │   └── README.md
│   ├── plugpdb
│   │   └── README.md
│   ├── prebuiltdb
│   │   └── README.md
│   ├── README.md
│   ├── startersetcontainer
│   │   ├── README.md
│   │   └── starterset.sql
│   └── unplugpdb
│   └── README.md
└── tests
├── helperFunctions.sh
├── README.md
├── runAllTests.sh
├── runContainerTests112.sh
├── runContainerTests121.sh
├── runContainerTests122.sh
├── runContainerTests183.sh
├── runContainerTests.sh
└── runImageBuildTests.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment