forked from DecisionsDev/odm-ondocker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
override-mysql.yml
executable file
·36 lines (32 loc) · 1.47 KB
/
override-mysql.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
version: '3'
services:
dbserver:
build:
dockerfile: ./${ODMDOCKERDIR}/databases/mysql/Dockerfile
environment:
- MYSQL_ROOT_PASSWORD=odmpwd
- MYSQL_DATABASE=odmdb
- MYSQL_USER=odmusr
- MYSQL_PASSWORD=odmpwd
ports:
- 3306:3306
odm-decisionserverconsole:
environment:
- DB_TYPE=mysql
# DB_TYPE could be set to "derby", "mysql" or "postgres". If it is not set, the PostgreSQL database is used by default.
# DB_DRIVER_URL could be used optionally to override the driver that is used by default for a given database.
odm-decisionrunner:
environment:
- DB_TYPE=mysql
# DB_TYPE could be set to "derby", "mysql" or "postgres". If it is not set, the PostgreSQL database is used by default.
# DB_DRIVER_URL could be used optionally to override the driver that is used by default for a given database.
odm-decisionserverruntime:
environment:
- DB_TYPE=mysql
# DB_TYPE could be set to "derby", "mysql" or "postgres". If it is not set, the PostgreSQL database is used by default.
# DB_DRIVER_URL could be used optionally to override the driver that is used by default for a given database.
odm-decisioncenter:
environment:
- DB_TYPE=mysql
# DB_TYPE could be set to "derby", "mysql" or "postgres". If it is not set, the PostgreSQL database is used by default.
# DB_DRIVER_URL could be used optionally to override the driver that is used by default for a given database.