summaryrefslogtreecommitdiffstats
path: root/standalone/src/main/assembly/docker/docker-entrypoint.sh
blob: 60b14d5273d5a311f7d6d5ecc2dfefc62255a9f5 (plain)
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
#!/bin/bash

if [ -z "$SERVICE_IP" ]; then
    export SERVICE_IP=`hostname -i`
fi
echo "SERVICE_IP=$SERVICE_IP"

if [ -z "$MSB_ADDR" ]; then
    echo "Missing required variable MSB_ADDR: Microservices Service Bus address <ip>:<port>"
#   exit 1
fi
echo "MSB_ADDR=$MSB_ADDR"

# Wait for MSB initialization
#echo "Wait for MSB initialization"
#for i in {1..5}; do
#    curl -sS -m 1 $MSB_ADDR > /dev/null && break
#    sleep $i
#done

# Configure service based on docker environment variables
/home/esr/docker/instance_config.sh


# Start the microservice
/home/esr/docker/instance_run.sh