-
Notifications
You must be signed in to change notification settings - Fork 267
/
docker-compose.yml
67 lines (59 loc) · 1 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
62
63
64
65
66
67
services:
e2e:
build: ./tests/
depends_on:
- vote
- result
- worker
- db
- redis
networks:
- front-tier
vote:
image: ${VOTE_IMAGE}
ports: ["80"]
depends_on:
- redis
- db
networks:
- front-tier
- back-tier
result:
image: ${RESULT_IMAGE}
ports: ["80"]
depends_on:
- redis
- db
networks:
- front-tier
- back-tier
worker:
image: ${WORKER_IMAGE}
depends_on:
- redis
- db
networks:
- back-tier
redis:
image: redis:alpine
ports: ["6379"]
networks:
- back-tier
db:
image: postgres:15-alpine
environment:
POSTGRES_USER: "postgres"
POSTGRES_PASSWORD: "postgres"
volumes:
- "db-data:/var/lib/postgresql/data"
- "./healthchecks:/healthchecks"
healthcheck:
test: /healthchecks/postgres.sh
interval: "5s"
networks:
- back-tier
volumes:
db-data:
networks:
front-tier:
back-tier: