-
Notifications
You must be signed in to change notification settings - Fork 0
/
run.sh
51 lines (39 loc) · 1.26 KB
/
run.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
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env bash
set -e
echo '** Make sure that Docker is running, or else the build will fail!'
sleep 2
echo '...'
sleep 1
echo 'Starting build...'
sleep 1
# Build the project and docker images
mvn clean install
# Export the active docker machine IP
export DOCKER_IP=$(docker-machine ip $(docker-machine active))
# docker-machine doesn't exist in Linux, assign default ip if it's not set
DOCKER_IP=${DOCKER_IP:-0.0.0.0}
# Remove existing containers
docker-compose stop
docker-compose rm -f
# Start the config service first and wait for it to become available
docker-compose up -d config-service
while [ -z ${CONFIG_SERVICE_READY} ]; do
echo "Waiting for config service..."
if [ "$(curl --silent $DOCKER_IP:8888/health 2>&1 | grep -q '\"status\":\"UP\"'; echo $?)" = 0 ]; then
CONFIG_SERVICE_READY=true;
fi
sleep 2
done
# Start the discovery service next and wait
docker-compose up -d discovery-service
while [ -z ${DISCOVERY_SERVICE_READY} ]; do
echo "Waiting for discovery service..."
if [ "$(curl --silent $DOCKER_IP:8761/health 2>&1 | grep -q '\"status\":\"UP\"'; echo $?)" = 0 ]; then
DISCOVERY_SERVICE_READY=true;
fi
sleep 2
done
# Start the other containers
docker-compose up -d
# Attach to the log output of the cluster
docker-compose logs