-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstart.sh
41 lines (35 loc) · 831 Bytes
/
start.sh
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
#!/bin/bash
echo iFood Config Server: BUILDING
cd ifood-config-server
mvn clean install -U
cd ..
clear
echo iFood Config Server: BUILD DONE
echo iFood Eureka Server: BUILDING
cd ifood-eureka-server
mvn clean install -U
cd ..
clear
echo iFood Config Server: BUILD DONE
echo iFood Eureka Server: BUILD DONE
echo iFood Zuul Server: BUILDING
cd ifood-zuul-server
mvn clean install -U
cd ..
clear
echo iFood Config Server: BUILD DONE
echo iFood Eureka Server: BUILD DONE
echo iFood Zuul Server: BUILD DONE
echo iFood Suggestion Server: BUILDING
cd ifood-suggestion-server
mvn clean install -U
cd ..
clear
echo iFood Config Server: BUILD DONE
echo iFood Eureka Server: BUILD DONE
echo iFood Zuul Server: BUILD DONE
echo iFood Suggestion Server: BUILD DONE
echo ---
echo Starting Application...
docker-compose up -d --build
sleep 60