File tree Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -67,6 +67,25 @@ database.default.DBDriver = MySQLi
6767database.default.port = 3306
6868```
6969
70+ ### Oracle
71+
72+ #### .env
73+
74+ ```
75+ NLS_LANG = 'AMERICAN_AMERICA.UTF8'
76+ NLS_DATE_FORMAT = 'YYYY-MM-DD HH24:MI:SS'
77+ NLS_TIMESTAMP_FORMAT = 'YYYY-MM-DD HH24:MI:SS'
78+ NLS_TIMESTAMP_TZ_FORMAT = 'YYYY-MM-DD HH24:MI:SS'
79+ database.default.DSN = localhost:1521/XEPDB1
80+ database.default.hostname =
81+ database.default.database =
82+ database.default.username = ORACLE
83+ database.default.password = ORACLE
84+ database.default.DBDriver = OCI8
85+ database.default.charset = AL32UTF8
86+ database.default.port = 1521
87+ ```
88+
7089### MailHog
7190
7291#### .env
Original file line number Diff line number Diff line change @@ -29,6 +29,15 @@ services:
2929 MYSQL_USER : mysql
3030 MYSQL_PASSWORD : mysql
3131
32+ oracle :
33+ image : gvenzl/oracle-xe:21
34+ ports :
35+ - " 1521:1521"
36+ environment :
37+ ORACLE_RANDOM_PASSWORD : true
38+ APP_USER : ORACLE
39+ APP_USER_PASSWORD : ORACLE
40+
3241 mailhog :
3342 image : mailhog/mailhog
3443 ports :
You can’t perform that action at this time.
0 commit comments