增加openresty

master
pan 4 years ago
parent 9ad8b6251d
commit a25f515502
  1. 3
      run
  2. 7
      shell/initRisk
  3. 11
      shell/updateRisk

3
run

@ -1,4 +1,3 @@
#!/bin/sh
#创建运行容器
docker run --name test -p 3000:3000 -p 2233:2233 -p 5000:5000 test:1.0 &
docker run -d --name test -p 3000:3000 -p 2233:2233 -p 5000:5000 test:1.0

@ -1,11 +1,10 @@
#!/bin/sh
#运行自动部署服务端
nohup node /app/RiskCloudRun/bin/www &
#运行web服务端
updateRisk RiskCloudMock
#运行web客户端
updateRisk RiskCloudFontend
#运行openresty
/usr/local/openresty/nginx/sbin/nginx
#运行自动部署服务端
node /app/RiskCloudRun/bin/www
/usr/local/openresty/nginx/sbin/nginx

@ -22,17 +22,12 @@ function run(){
if [ ! -e $1 ]
then
git clone git@gogs.kirito.cool:panqihua/$1.git
isUpdate=1
else
isUpdate=0
fi
cd $1 && git reset --hard && git pull && yarn && chmod +x run.sh && killNode
if [ $isUpdate -eq 0 ]
then
url="http://127.0.0.1:3000/finsh?name=$1"
echo "成功回调地址:$url"
curl $url
fi
url="http://127.0.0.1:3000/finsh?name=$1"
echo "成功回调地址:$url"
curl $url
}
run $1

Loading…
Cancel
Save