1 Star 1 Fork 1

金某某/spring-cloud-event-sourcing-example

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
run.sh 1.17 KB
一键复制 编辑 原始数据 按行查看 历史
Administrator 提交于 2017-03-09 09:40 . modify run.sh
#!/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))
# 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 discover-service
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
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jin118/spring-cloud-event-sourcing-example.git
git@gitee.com:jin118/spring-cloud-event-sourcing-example.git
jin118
spring-cloud-event-sourcing-example
spring-cloud-event-sourcing-example
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385