增加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 #!/bin/sh
#创建运行容器 #创建运行容器
docker run -d --name test -p 3000:3000 -p 2233:2233 -p 5000:5000 test:1.0
docker run --name test -p 3000:3000 -p 2233:2233 -p 5000:5000 test:1.0 &

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

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

Loading…
Cancel
Save