-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
180 lines (170 loc) Β· 3.79 KB
/
docker-compose.yml
File metadata and controls
180 lines (170 loc) Β· 3.79 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
services:
eureka:
image: ${DOCKER_HUB_NAMESPACE}/glowgrow-eureka
container_name: eureka
ports:
- "19090:19090"
env_file:
- .env
build:
context: .
dockerfile: ./eureka/Dockerfile
args:
- FILE_DIRECTORY=.
environment:
- SPRING_PROFILES_ACTIVE=${SPRING_PROFILES_ACTIVE}
gateway:
image: ${DOCKER_HUB_NAMESPACE}/glowgrow-gateway
container_name: gateway
ports:
- "19091:19091"
env_file:
- .env
build:
context: .
dockerfile: ./gateway/Dockerfile
args:
- FILE_DIRECTORY=.
environment:
- SPRING_PROFILES_ACTIVE=${SPRING_PROFILES_ACTIVE}
depends_on:
- eureka
user:
image: ${DOCKER_HUB_NAMESPACE}/glowgrow-user
container_name: user
ports:
- "19093:19093"
env_file:
- .env
build:
context: .
dockerfile: ./GlowGrow-users/Dockerfile
args:
- FILE_DIRECTORY=.
environment:
- SPRING_PROFILES_ACTIVE=${SPRING_PROFILES_ACTIVE}
depends_on:
- eureka
auth:
image: ${DOCKER_HUB_NAMESPACE}/glowgrow-auth
container_name: auth
ports:
- "19099:19099"
env_file:
- .env
build:
context: .
dockerfile: ./auth/Dockerfile
args:
- FILE_DIRECTORY=.
environment:
- SPRING_PROFILES_ACTIVE=${SPRING_PROFILES_ACTIVE}
depends_on:
- eureka
notification:
image: ${DOCKER_HUB_NAMESPACE}/glowgrow-notification
container_name: notification
ports:
- "19094:19094"
env_file:
- .env
build:
context: .
dockerfile: ./notification/Dockerfile
args:
- FILE_DIRECTORY=.
environment:
- SPRING_PROFILES_ACTIVE=${SPRING_PROFILES_ACTIVE}
depends_on:
- eureka
post:
image: ${DOCKER_HUB_NAMESPACE}/glowgrow-post
container_name: post
ports:
- "19095:19095"
env_file:
- .env
build:
context: .
dockerfile: ./post/Dockerfile
args:
- FILE_DIRECTORY=.
environment:
- SPRING_PROFILES_ACTIVE=${SPRING_PROFILES_ACTIVE}
depends_on:
- eureka
promotion:
image: ${DOCKER_HUB_NAMESPACE}/glowgrow-promotion
container_name: promotion
ports:
- "19098:19098"
env_file:
- .env
build:
context: .
dockerfile: ./promotion/Dockerfile
args:
- FILE_DIRECTORY=.
environment:
- SPRING_PROFILES_ACTIVE=${SPRING_PROFILES_ACTIVE}
depends_on:
- eureka
reservation:
image: ${DOCKER_HUB_NAMESPACE}/glowgrow-reservation
container_name: reservation
ports:
- "19092:19092"
env_file:
- .env
build:
context: .
dockerfile: ./reservation/Dockerfile
args:
- FILE_DIRECTORY=.
environment:
- SPRING_PROFILES_ACTIVE=${SPRING_PROFILES_ACTIVE}
depends_on:
- eureka
payment:
image: ${DOCKER_HUB_NAMESPACE}/glowgrow-payment
container_name: payment
ports:
- "19096:19096"
env_file:
- .env
build:
context: .
dockerfile: ./payment/Dockerfile
args:
- FILE_DIRECTORY=.
environment:
- SPRING_PROFILES_ACTIVE=${SPRING_PROFILES_ACTIVE}
depends_on:
- eureka
# chat:
# build:
# context: .
# dockerfile: ./chat/Dockerfile
# args:
# - FILE_DIRECTORY=.
# image: ${DOCKER_HUB_NAMESPACE}/chat-service
multimedia:
image: ${DOCKER_HUB_NAMESPACE}/glowgrow-multimedia
container_name: multimedia
ports:
- "19100:19100"
env_file:
- .env
build:
context: .
dockerfile: ./multimedia/Dockerfile
args:
- FILE_DIRECTORY=.
environment:
- SPRING_PROFILES_ACTIVE=${SPRING_PROFILES_ACTIVE}
depends_on:
- eureka
networks:
default:
name: GlowGrow-network
external: true