forked from employmentRescue/playground
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
106 lines (95 loc) · 2.5 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
version: '3.5'
services:
api-gateway:
# build:
# context: ./spring-framework/api_gateway-service
image: itmagician/ssafy-b309:api-gateway-service
container_name: api-gateway
ports:
# - "80:80"
- "443:443"
networks:
- playground-broadcast-network
oauth2-service:
# build:
# context: ./spring-framework/oauth_service
image: itmagician/ssafy-b309:oauth2-service
container_name: playground-oauth2-service
environment:
- env.server.port=9001
ports:
- "9001:9001"
networks:
- playground-broadcast-network
oauth2-service2:
# build:
# context: ./spring-framework/oauth_service
image: itmagician/ssafy-b309:oauth2-service
container_name: playground-oauth2-service2
environment:
- env.server.port=9011
ports:
- "9011:9011"
networks:
- playground-broadcast-network
user-service:
# build:
# context: ./spring-framework/user-service
image: itmagician/ssafy-b309:user-service
container_name: user-service
ports:
- "9002:8080"
networks:
- playground-broadcast-network
matching-service:
# build:
# context: ./spring-framework/matching
image: itmagician/ssafy-b309:matching-service
container_name: matching-service
ports:
- "9003:8080"
networks:
- playground-broadcast-network
notify-service:
# build:
# context: ./spring-framework/fcm-service
image: itmagician/ssafy-b309:notify-service
container_name: notify-service
ports:
- "9004:8080"
networks:
- playground-broadcast-network
# depends_on:
# - matching-service
# - user-service
chat-service:
# build:
# context: ./spring-framework/fcm-service
image: itmagician/ssafy-b309:chat-service
container_name: chat-service
ports:
- "9005:8080"
networks:
- playground-broadcast-network
team_matching-service:
# build:
# context: ./spring-framework/fcm-service
image: itmagician/ssafy-b309:team_matching-service
container_name: team_matching-service
ports:
- "9006:8080"
networks:
- playground-broadcast-network
react-framework:
# build:
# context: ./spring-framework/fcm-service
image: itmagician/ssafy-b309:react-framework
container_name: react-framework
ports:
- "3000:80"
networks:
- playground-broadcast-network
networks:
playground-broadcast-network:
name: playground-broadcast-network
driver: bridge