-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yml
184 lines (175 loc) · 3.57 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
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
services:
# Front - prod (build)
front:
build:
context: ./front
dockerfile: Dockerfile
args:
VITE_BASE_URL: $VITE_BASE_URL
VITE_WS_BASE_URL: $VITE_WS_BASE_URL
VITE_OAUTH_AUTHORIZE_URL: $VITE_OAUTH_AUTHORIZE_URL
container_name: front
ports:
- "8000:8443"
volumes:
- shared_ssl:/etc/ssl
networks:
- front
env_file:
- .env
restart: on-failure
profiles:
- prod
# Front - dev (live server)
front_dev:
build:
context: ./front
dockerfile: Dockerfile.dev
container_name: front_dev
volumes:
- /app/node_modules
- type: bind
source: ./front/app
target: /app
- shared_ssl:/etc/ssl
ports:
- "8000:8000"
networks:
- front
env_file:
- .env
restart: on-failure
profiles:
- dev
# Back - data_base
data_base:
build:
context: ./data_base
dockerfile: Dockerfile
container_name: data_base
env_file:
- .env
volumes:
- data_base_data:/var/lib/postgresql/data
restart: always
networks:
- back
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres || exit 1"]
interval: 10s
timeout: 5s
retries: 5
start_period: 40s
# Back - authentification
authentification:
build:
context: ./authentification
dockerfile: Dockerfile
container_name: authentification
ports:
- "8001:8001"
volumes:
- shared_ssl:/etc/ssl
- ./authentification:/app
- shared_media:/app/media
networks:
- back
depends_on:
data_base:
condition: service_healthy
env_file:
- .env
restart: on-failure
# Back - profile
profile:
build:
context: ./profile
dockerfile: Dockerfile
container_name: profile
volumes:
- shared_ssl:/etc/ssl
- shared_media:/app/media
- ./profile/profileApp:/profileApp
ports:
- "8002:8002"
networks:
- back
depends_on:
data_base:
condition: service_healthy
authentification:
condition: service_started
env_file:
- .env
restart: on-failure
# Back - friendship
friendship:
build:
context: ./friendship
dockerfile: Dockerfile
container_name: friendship
ports:
- "8003:8003"
volumes:
- shared_ssl:/etc/ssl
- ./friendship/friendshipApp:/friendshipApp
networks:
- back
depends_on:
data_base:
condition: service_healthy
authentification:
condition: service_started
env_file:
- .env
restart: on-failure
tournament:
build:
context: ./tournament
dockerfile: Dockerfile
container_name: tournament
ports:
- "8005:8005"
volumes:
- shared_ssl:/etc/ssl
- ./tournament/tournament:/tournament
networks:
- back
depends_on:
data_base:
condition: service_healthy
authentification:
condition: service_started
env_file:
- .env
restart: on-failure
# Back - game
game:
build:
context: ./game
dockerfile: Dockerfile
container_name: game
ports:
- "8009:8009"
volumes:
- shared_ssl:/etc/ssl
- ./game/app:/app
networks:
- back
depends_on:
data_base:
condition: service_healthy
authentification:
condition: service_started
env_file:
- .env
restart: on-failure
volumes:
data_base_data:
shared_ssl:
shared_media:
networks:
front:
driver: bridge
back:
driver: bridge