Add a way to get MSB address in esr-server.
[aai/esr-server.git] / standalone / src / main / assembly / docker / docker-entrypoint.sh
diff --git a/standalone/src/main/assembly/docker/docker-entrypoint.sh b/standalone/src/main/assembly/docker/docker-entrypoint.sh
new file mode 100644 (file)
index 0000000..93e5973
--- /dev/null
@@ -0,0 +1,25 @@
+#!/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