-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdocker-compose.dev.yaml
161 lines (152 loc) · 4.13 KB
/
docker-compose.dev.yaml
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
services:
ft-transcendence:
build:
context: ./client/
dockerfile: Dockerfile.dev
image: ft-transcendence:develop
container_name: ft-transcendence
environment:
- STAGE=Development
volumes:
- ./client:/var/www/ft_transcendence/:ro
- ./client/conf/:/etc/nginx/sites-enabled/:ro
ports:
- 443:443
networks:
- ft_transcendence
restart: on-failure
authentication:
build:
context: ./services/authentication/
dockerfile: Dockerfile.dev
image: authentication:develop
container_name: authentication
environment:
- STAGE=Development
env_file:
- .env
volumes:
- ./services/authentication/:/microservice/authentication/:rw
networks:
- ft_transcendence
depends_on:
postgres:
condition: service_healthy
restart: on-failure
player:
build:
context: ./services/player/
dockerfile: Dockerfile.dev
image: player:develop
container_name: player
environment:
- STAGE=Development
env_file:
- .env
volumes:
- ./services/player/:/microservice/player/:rw
networks:
- ft_transcendence
depends_on:
postgres:
condition: service_healthy
restart: on-failure
matchmaking:
build:
context: ./services/matchmaking/
dockerfile: Dockerfile.dev
image: matchmaking:develop
container_name: matchmaking
environment:
- STAGE=Development
env_file:
- .env
volumes:
- ./services/matchmaking/:/microservice/matchmaking/:rw
networks:
- ft_transcendence
depends_on:
postgres:
condition: service_healthy
restart: on-failure
pong:
build:
context: ./services/pong/
dockerfile: Dockerfile.dev
image: pong:develop
container_name: pong
environment:
- STAGE=Development
env_file:
- .env
volumes:
- ./services/pong/:/microservice/pong/:rw
networks:
- ft_transcendence
depends_on:
postgres:
condition: service_healthy
restart: on-failure
tictactoe:
build:
context: ./services/tictactoe/
dockerfile: Dockerfile.dev
image: tictactoe:develop
container_name: tictactoe
environment:
- STAGE=Development
env_file:
- .env
volumes:
- ./services/tictactoe/:/microservice/tictactoe/:rw
networks:
- ft_transcendence
depends_on:
postgres:
condition: service_healthy
restart: on-failure
tournament:
build:
context: ./services/tournament/
dockerfile: Dockerfile.dev
image: tournament:develop
container_name: tournament
environment:
- STAGE=Development
env_file:
- .env
volumes:
- ./services/tournament/:/microservice/tournament/:rw
networks:
- ft_transcendence
depends_on:
postgres:
condition: service_healthy
restart: on-failure
postgres:
image: postgres:16.2-bullseye
container_name: postgres
env_file:
- .env
networks:
- ft_transcendence
restart: on-failure
healthcheck:
test: ["CMD-SHELL", "pg_isready"]
interval: 5s
timeout: 5s
retries: 5
pgadmin:
image: dpage/pgadmin4
container_name: pgadmin4
env_file:
- .env
ports:
- 8080:80
networks:
- ft_transcendence
restart: on-failure
networks:
ft_transcendence:
name: ft_transcendence
driver: bridge