-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
128 lines (121 loc) · 2.6 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
version: '3'
volumes:
users-postgres-data:
driver: local
auth-postgres-data:
driver: local
history-postgres-data:
driver: local
services:
#
# USERS SERVICE
#
users-postgres:
container_name: users-postgres
image: postgres
volumes:
- users-postgres-data:/var/lib/postgresql/data
users-api:
container_name: users-api
image: cagodoy/tenpo-users-api:0.0.5
ports:
- 5020:5020
environment:
- POSTGRES_DSN=postgres://postgres:postgres@users-postgres:5432/postgres?sslmode=disable
- PORT=5020
depends_on:
- users-postgres
links:
- users-postgres
#
# AUTH SERVICE
#
auth-postgres:
container_name: auth-postgres
image: postgres
volumes:
- auth-postgres-data:/var/lib/postgresql/data
ports:
- 5432:5432
auth-api:
container_name: auth-api
image: cagodoy/tenpo-auth-api:0.0.11
ports:
- 5010:5010
environment:
- POSTGRES_DSN=postgres://postgres:postgres@auth-postgres:5432/postgres?sslmode=disable
- PORT=5010
- USERS_HOST=users-api
- USERS_PORT=5020
- JWT_SECRET=jwt_very_secret
depends_on:
- auth-postgres
links:
- auth-postgres
#
# RESTAURANTS SERVICE
#
restaurants-api:
container_name: restaurants-api
image: cagodoy/tenpo-restaurants-api:0.0.7
ports:
- 5030:5030
environment:
- PORT=5030
- NATS_HOST=nats
- NATS_PORT=4222
- API_KEY=AIzaSyAH_cK89vxSSQy3rLjwByCnCUa7ZWR4uqE
depends_on:
- nats
links:
- nats
#
# HISTORY SERVICE
#
history-postgres:
container_name: history-postgres
image: postgres
volumes:
- history-postgres-data:/var/lib/postgresql/data
history-api:
container_name: history-api
image: cagodoy/tenpo-history-api:0.0.4
ports:
- 5040:5040
environment:
- PORT=5040
- POSTGRES_DSN=postgres://postgres:postgres@history-postgres:5432/postgres?sslmode=disable
- NATS_HOST=nats
- NATS_PORT=4222
depends_on:
- nats
- history-postgres
links:
- nats
- history-postgres
#
# GATEWAY SERVICE
#
gateway-api:
container_name: gateway-api
image: cagodoy/tenpo-gateway-api:0.0.4
ports:
- 5000:5000
environment:
- PORT=5000
- AUTH_HOST=auth-api
- AUTH_PORT=5010
- RESTAURANTS_HOST=restaurants-api
- RESTAURANTS_PORT=5030
- HISTORY_HOST=history-api
- HISTORY_PORT=5040
#
# NATS SERVICE
#
nats:
container_name: nats
image: nats:latest
ports:
- 4222:4222
- 8222:8222
- 6222:6222