blob: afffb86bfd36b521135861ab9c75f259570fbf58 [file] [log] [blame]
#! /bin/bash
echo "Waiting for XOS to come up"
until http 0.0.0.0:9999 &> /dev/null
do
sleep 1
echo -ne "."
RUNNING_CONTAINER=`sudo docker ps|grep "xos"|awk '{print $$NF}'`
if [[ $RUNNING_CONTAINER == "" ]]; then
echo Container may have failed. check with \"make showlogs\'
exit 1
fi
done
echo "XOS is ready"