-
Notifications
You must be signed in to change notification settings - Fork 40
/
override-derby.yml
executable file
·36 lines (32 loc) · 1.56 KB
/
override-derby.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/derby/Dockerfile
ports:
- 1527:1527
user: "0:0"
# Uncomment this line to persist your data. Note that on OSX you need to share this
# current directory in the Preference menu -> File Sharing menu.
# volumes:
# - ./:/opt/db-derby-10.12.1.1-bin
odm-decisionserverconsole:
environment:
- DB_TYPE=derby
# 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=derby
# 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=derby
# 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=derby
# 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.