-
Notifications
You must be signed in to change notification settings - Fork 228
/
docker-compose.yml
107 lines (99 loc) · 2.08 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# version is now using "compose spec"
# v2 and v3 are now combined!
# docker-compose v1.27+ required
services:
vote:
build: ./vote
# use python rather than gunicorn for local dev
command: wait-for-it --strict --timeout=60 redis:6379 -- python app.py
environment:
REDIS_HOST: "redis"
depends_on:
redis:
condition: service_healthy
volumes:
- ./vote:/app
ports:
- "5002:80"
networks:
- front-tier
- back-tier
result:
build: ./result
# use nodemon rather than node for local dev
command: nodemon server.js
environment:
PORT: "80"
PGUSER: "postgres"
PGHOST: "db"
PGPASSWORD: "postgres"
PGDATABASE: "postgres"
volumes:
- ./result:/app
ports:
- "5001:80"
- "5858:5858"
networks:
- front-tier
- back-tier
worker:
build:
context: ./worker
environment:
PGHOST: "db"
PGUSER: "postgres"
PGPASSWORD: "postgres"
REDIS_HOST: "redis"
depends_on:
redis:
condition: service_healthy
db:
condition: service_healthy
networks:
- back-tier
redis:
image: redis:5.0-alpine3.10
volumes:
- "./healthchecks:/healthchecks"
healthcheck:
test: /healthchecks/redis.sh
interval: "5s"
ports: ["6379"]
networks:
- back-tier
db:
image: postgres:9.4
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
loadbalancer:
build:
context: ./loadbalancer
environment:
PORT: 8080
VOTE_HOST: "vote"
VOTE_PORT: "80"
RESULT_HOST: "result"
RESULT_PORT: "80"
depends_on:
redis:
condition: service_healthy
db:
condition: service_healthy
ports:
- "5000:8080"
networks:
- front-tier
volumes:
db-data:
networks:
front-tier:
back-tier: