mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-09 23:24:07 -08:00
change to pm2 start server/server.js directly due to (#273)
This commit is contained in:
parent
feb0feda76
commit
c55f2b93f7
|
@ -198,7 +198,7 @@ if (type == "local") {
|
||||||
bash("git clone https://github.com/louislam/uptime-kuma.git .");
|
bash("git clone https://github.com/louislam/uptime-kuma.git .");
|
||||||
bash("npm run setup");
|
bash("npm run setup");
|
||||||
|
|
||||||
bash("pm2 start npm --name uptime-kuma -- run start-server -- --port=$port");
|
bash("pm2 start server/server.js --name uptime-kuma -- --port=$port");
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
defaultVolume = "uptime-kuma";
|
defaultVolume = "uptime-kuma";
|
||||||
|
|
|
@ -166,7 +166,7 @@ fi
|
||||||
cd $installPath
|
cd $installPath
|
||||||
git clone https://github.com/louislam/uptime-kuma.git .
|
git clone https://github.com/louislam/uptime-kuma.git .
|
||||||
npm run setup
|
npm run setup
|
||||||
pm2 start npm --name uptime-kuma -- run start-server -- --port=$port
|
pm2 start server/server.js --name uptime-kuma -- --port=$port
|
||||||
else
|
else
|
||||||
defaultVolume="uptime-kuma"
|
defaultVolume="uptime-kuma"
|
||||||
check=$(docker -v)
|
check=$(docker -v)
|
||||||
|
|
Loading…
Reference in a new issue