-
Notifications
You must be signed in to change notification settings - Fork 582
/
run.sh
41 lines (31 loc) · 958 Bytes
/
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
#!/usr/bin/env bash
set -e
# Build the project and docker images
mvn clean install
# Export the active docker machine IP
export DOCKER_IP=$(docker-machine ip $(docker-machine active))
# 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 [ "$(nc $DOCKER_IP -z -w 4 8888; 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 [ "$(nc $DOCKER_IP -z -w 4 8761; 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