File tree 2 files changed +15
-1
lines changed
2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 14
14
15
15
- name : Check Service Health
16
16
run : |
17
- ENV=prod docker compose -f docker-compose.standalone.yml up -d
17
+ sed -i 's|image: "ghcr.io/|image: "|g' docker-compose.standalone.yml
18
+ echo "Docker compose file to run with:"
19
+ cat docker-compose.standalone.yml
20
+ export ENV=prod
21
+ docker compose -f docker-compose.standalone.yml build
22
+ docker compose -f docker-compose.standalone.yml up -d --quiet-pull
18
23
sleep 10
19
24
RETRY=0
20
25
SERVICES=$(docker compose -f docker-compose.standalone.yml ps -q)
Original file line number Diff line number Diff line change @@ -172,13 +172,19 @@ services:
172
172
# turms servers
173
173
turms-admin :
174
174
image : " ghcr.io/turms-im/turms-admin"
175
+ build :
176
+ context : .
177
+ dockerfile : ./turms-admin/Dockerfile
175
178
pull_policy : always
176
179
ports :
177
180
- " 6510:6510"
178
181
# <<: *logging
179
182
180
183
turms-gateway :
181
184
image : " ghcr.io/turms-im/turms-gateway"
185
+ build :
186
+ context : .
187
+ dockerfile : ./turms-gateway/Dockerfile
182
188
pull_policy : always
183
189
depends_on :
184
190
# loki:
@@ -244,6 +250,9 @@ services:
244
250
245
251
turms-service :
246
252
image : " ghcr.io/turms-im/turms-service"
253
+ build :
254
+ context : .
255
+ dockerfile : ./turms-service/Dockerfile
247
256
pull_policy : always
248
257
depends_on :
249
258
# loki:
You can’t perform that action at this time.
0 commit comments