@@ -118,8 +118,11 @@ install-OracleDatabase/
118118├── compose.yml # Docker Compose configuration
119119├── Dockerfile.ol7 # Oracle Linux 7 base image
120120├── Dockerfile.ol8 # Oracle Linux 8 base image
121- ├── test-database.sh # Database status testing script
122- └── install-*/ # Oracle Database installation scripts
121+ ├── test-database.sh # Database status testing script (validates DB installation)
122+ ├── CLAUDE.md # AI assistant instructions for Claude Code
123+ ├── README.md # Main project documentation
124+ ├── LICENSE # Project license
125+ └── install-*/ # Oracle Database installation scripts for each version
123126```
124127
125128#### Available Make Commands
@@ -147,15 +150,15 @@ install-OracleDatabase/
147150
148151#### Testing Matrix
149152
150- | Oracle Version | Base OS | Container |
151- | ---------------| ---------| -----------|
152- | 11g R2 | Oracle Linux 7 | oracle-linux-7 |
153- | 12c R1 | Oracle Linux 7 | oracle-linux-7 |
154- | 12c R2 | Oracle Linux 7 | oracle-linux-7 |
155- | 18c | Oracle Linux 7 | oracle-linux-7 |
156- | 19c | Oracle Linux 7 | oracle-linux-7 |
157- | 19c ARM | Oracle Linux 8 | oracle-linux-8 |
158- | 21c | Oracle Linux 7/8 | Both |
153+ | Oracle Version | Base OS | Container Image |
154+ | ---------------| ---------| ----------------- |
155+ | 11g R2 | Oracle Linux 7 | install-oracledatabase- oracle-linux-7 |
156+ | 12c R1 | Oracle Linux 7 | install-oracledatabase- oracle-linux-7 |
157+ | 12c R2 | Oracle Linux 7 | install-oracledatabase- oracle-linux-7 |
158+ | 18c | Oracle Linux 7 | install-oracledatabase- oracle-linux-7 |
159+ | 19c | Oracle Linux 7 | install-oracledatabase- oracle-linux-7 |
160+ | 19c ARM | Oracle Linux 8 | install-oracledatabase- oracle-linux-8 |
161+ | 21c | Oracle Linux 7/8 | Both images |
159162
160163#### Prerequisites
161164
@@ -194,6 +197,8 @@ The scripts use a `.env` file (created from `dotenv.sample`) with these key vari
194197- ` ORACLE_PDB ` - Pluggable database name
195198- ` ORACLE_PASSWORD ` - System passwords
196199- ` ORACLE_SAMPLESCHEMA ` - Whether to install sample schemas
200+ - ` ORACLE_CHARACTERSET ` - Database character set (typically AL32UTF8)
201+ - ` ORACLE_EDITION ` - Oracle Database edition (EE, SE2, etc.)
197202
198203### Template Processing
199204
0 commit comments