Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions src/docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,25 @@ database.default.DBDriver = MySQLi
database.default.port = 3306
```

### Oracle

#### .env

```
NLS_LANG = 'AMERICAN_AMERICA.UTF8'
NLS_DATE_FORMAT = 'YYYY-MM-DD HH24:MI:SS'
NLS_TIMESTAMP_FORMAT = 'YYYY-MM-DD HH24:MI:SS'
NLS_TIMESTAMP_TZ_FORMAT = 'YYYY-MM-DD HH24:MI:SS'
database.default.DSN = localhost:1521/XEPDB1
database.default.hostname =
database.default.database =
database.default.username = ORACLE
database.default.password = ORACLE
database.default.DBDriver = OCI8
database.default.charset = AL32UTF8
database.default.port = 1521
```

### MailHog

#### .env
Expand Down
9 changes: 9 additions & 0 deletions src/docker/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,15 @@ services:
MYSQL_USER: mysql
MYSQL_PASSWORD: mysql

oracle:
image: gvenzl/oracle-xe:21
ports:
- "1521:1521"
environment:
ORACLE_RANDOM_PASSWORD: true
APP_USER: ORACLE
APP_USER_PASSWORD: ORACLE

mailhog:
image: mailhog/mailhog
ports:
Expand Down