forked from oscarjb1/introduction-to-software-architecture
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.cmd
41 lines (31 loc) · 717 Bytes
/
build.cmd
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
@echo off
CALL cd security
CALL build
CALL docker build -t security .
CALL cd ../ecommerce-app
CALL build
CALL docker build -t ecommerce-app .
CALL cd ../service-registry
CALL build
CALL docker build -t service-registry .
CALL cd ../api-gateway
CALL build
CALL docker build -t api-gateway .
CALL cd ../security
CALL build
CALL docker build -t security .
CALL cd ../crm-api
CALL build
CALL docker build -t crm-api .
CALL cd ../mail-sender
CALL build
CALL docker build -t mail-sender .
CALL cd ../webhook-notif
CALL build
CALL docker build -t webhook-notif .
CALL cd ../3pary-app
CALL build
CALL docker build -t 3pary-app .
CALL cd ../ftp-payment-pooling
CALL build
CALL docker build -t ftp-payment-pooling .