forked from cdomet-d/transcendence
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
212 lines (200 loc) · 5.73 KB
/
Copy pathdocker-compose.yaml
File metadata and controls
212 lines (200 loc) · 5.73 KB
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
networks:
transcendence:
driver: bridge
name: transcendence
secrets:
key.pem:
file: ${TSECRETS}/key.pem
cert.pem:
file: ${TSECRETS}/cert.pem
services:
nats-server:
build:
context: ./services/nats-server
dockerfile: Dockerfile
container_name: nats-server
image: nats:0.0.1
environment:
- NATS_SERVER_TOKEN=${NATS_SERVER_TOKEN}
networks:
- transcendence
restart: unless-stopped
accessibility:
build:
context: ./services/accessibility
dockerfile: Dockerfile
container_name: accessibility
image: accessibility:0.0.1
networks:
- transcendence
restart: unless-stopped
environment:
- NGINXIP=nginx
volumes:
- ./services/accessibility/app:/usr/app
- ./services/accessibility/data:/usr/data
auth:
build:
context: ./services/auth
dockerfile: Dockerfile
container_name: auth
image: auth:0.0.1
networks:
- transcendence
restart: unless-stopped
environment:
- NGINXIP=nginx
- PORT=${AUTH_PORT}
- JWT_SECRET=${JWT_SECRET}
- NATS_SERVER_TOKEN=${NATS_SERVER_TOKEN}
volumes:
- ./services/auth/app:/usr/app
- ./services/auth/data:/usr/data
depends_on:
- nats-server
dashboard:
build:
context: ./services/dashboards
dockerfile: Dockerfile
container_name: dashboard
image: dashboard:0.0.1
networks:
- transcendence
restart: unless-stopped
environment:
- JWT_SECRET=${JWT_SECRET}
- NGINXIP=nginx
- PORT=${DASHBOARD_PORT}
volumes:
- ./services/dashboards/app:/usr/app
- ./services/dashboards/data:/usr/data
friends:
build:
context: ./services/friends
dockerfile: Dockerfile
container_name: friends
image: friends:0.0.1
networks:
- transcendence
restart: unless-stopped
environment:
- NGINXIP=nginx
- PORT=${FRIENDS_PORT}
- JWT_SECRET=${JWT_SECRET}
volumes:
- ./services/friends/app:/usr/app
- ./services/friends/data:/usr/data
bff:
build:
context: ./services/bff
dockerfile: Dockerfile
container_name: bff
image: bff:0.0.1
networks:
- transcendence
restart: unless-stopped
environment:
- NGINXIP=nginx
- PORT=${BFF_PORT}
- JWT_SECRET=${JWT_SECRET}
- NATS_SERVER_TOKEN=${NATS_SERVER_TOKEN}
volumes:
- ./services/bff/app:/usr/app
depends_on:
- nats-server
game-manager:
build:
context: ./services/game-manager
dockerfile: Dockerfile
container_name: game-manager
image: gamemanager:0.0.1
environment:
- NGINXIP=nginx
- PORT=${HOST}
- NATS_SERVER_TOKEN=${NATS_SERVER_TOKEN}
- PORT=${GM_PORT}
- JWT_SECRET=${JWT_SECRET}
networks:
- transcendence
restart: unless-stopped
volumes:
- ./services/game-manager/app:/usr/app
- ./services/game-manager/data:/usr/data
pong:
build:
context: ./services/pong
dockerfile: Dockerfile
container_name: pong
environment:
- NGINXIP=nginx
- PORT=${PONG_PORT}
- NATS_SERVER_TOKEN=${NATS_SERVER_TOKEN}
image: pong:0.0.1
networks:
- transcendence
restart: unless-stopped
volumes:
- ./services/pong/app:/usr/app
depends_on:
- nats-server
users:
build:
context: ./services/users
dockerfile: Dockerfile
container_name: users
image: users:0.0.1
networks:
- transcendence
restart: unless-stopped
environment:
- NGINXIP=nginx
- PORT=${USERS_PORT}
- JWT_SECRET=${JWT_SECRET}
volumes:
- ./services/users/app:/usr/app
- ./services/users/data:/usr/data
frontend:
build:
context: ./services/frontend
dockerfile: Dockerfile
container_name: frontend
image: frontend:0.0.1
networks:
- transcendence
restart: unless-stopped
environment:
- JWT_SECRET=${JWT_SECRET}
- NGINXIP=nginx
- HOST=${HOST}
- NATS_SERVER_TOKEN=${NATS_SERVER_TOKEN}
volumes:
- ./services/frontend/app:/app
depends_on:
- nats-server
- bff
nginx:
build:
context: ./services/nginx/
dockerfile: Dockerfile
container_name: nginx
environment:
- PUBLIC_IP=${HOST}
image: nginx:0.0.1
networks:
- transcendence
ports:
- '8443:443'
restart: unless-stopped
secrets:
- cert.pem
- key.pem
depends_on:
- accessibility
- auth
- dashboard
- friends
- bff
- game-manager
- pong
- users
- frontend