-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdocker-compose.yml
61 lines (61 loc) · 1.17 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
59
60
61
version: "3"
services:
postgres:
container_name: postgres
build:
context: ./postgres
ports:
- 5432:5432
restart: always
environment:
POSTGRES_PASSWORD: pg_password
command:
- "postgres"
- "-c"
- "wal_level=logical"
materialized:
image: materialize/materialized:v0.20.0
container_name: materialized
restart: always
ports:
- 6875:6875
depends_on:
- postgres
grafana_dashboard:
image: materialize/dashboard
container_name: grafana_dashboard
restart: always
ports:
- 3001:3000
depends_on:
- materialized
environment:
MATERIALIZED_URL: materialized:6875
helper:
container_name: helper
build:
context: ./helper
depends_on:
- materialized
backend:
container_name: backend
build:
context: ./backend
ports:
- 4000:4000
depends_on:
- materialized
frontend:
container_name: frontend
build:
context: ./frontend
ports:
- 3000:3000
depends_on:
- backend
microservice:
container_name: microservice
build:
context: ./microservice
depends_on:
- backend