-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathdocker-compose.yml
58 lines (54 loc) · 1.33 KB
/
docker-compose.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
version: "3.7"
services:
db:
container_name: db
image: decerto/higson-demo-database:4.0.0
ports:
- "8082:8082"
- "9092:9092"
networks:
- higson-net
studio:
container_name: studio
image: decerto/higson-studio:4.0.11
environment:
- HIGSON_DATABASE_URL=jdbc:h2:tcp://db/higson.demo;NON_KEYWORDS=VALUE
- HIGSON_DATABASE_DIALECT=h2
- HIGSON_DATABASE_USERNAME=sa
- HIGSON_DATABASE_PASSWORD=sa
- HIGSON_STUDIO_SETUP_PASSWORD_FORCE_CHANGE_ENABLED=false
ports:
- "38080:38080"
depends_on:
- db
networks:
- higson-net
runtime-rest:
container_name: runtime-rest
image: decerto/higson-runtime-rest:4.0.11
environment:
- higson.database.url=jdbc:h2:tcp://db/higson.demo;NON_KEYWORDS=VALUE
- higson.database.dialect=h2
- higson.database.username=sa
- higson.database.password=sa
- higson.runtime.function.validate-arguments=true
ports:
- "8081:8081"
depends_on:
- db
networks:
- higson-net
web:
container_name: demo
image: decerto/higson-motor-insurance-demo:latest
environment:
- HIGSON_DATABASE_URL=jdbc:h2:tcp://db/higson.demo
ports:
- "48080:48080"
depends_on:
- db
networks:
- higson-net
networks:
higson-net:
driver: bridge