Some checks failed
Vulhub Format Check and Lint / format-check (push) Has been cancelled
Vulhub Format Check and Lint / markdown-check (push) Has been cancelled
Vulhub Docker Image CI / longtime-images-test (push) Has been cancelled
Vulhub Docker Image CI / images-test (push) Has been cancelled
12 lines
347 B
Bash
12 lines
347 B
Bash
#!/usr/bin/env sh
|
|
|
|
PRG="$0"
|
|
PRGDIR=`dirname "$PRG"`
|
|
[ -z "$WEBAPP_HOME" ] && WEBAPP_HOME=`cd "$PRGDIR/.." >/dev/null; pwd`
|
|
|
|
JAVA_OPTS=" -Xms256M -Xmx512M"
|
|
JAR_PATH="${WEBAPP_HOME}/webapp"
|
|
|
|
exec java ${JAVA_OPTS} -jar ${JAR_PATH}/skywalking-webapp.jar \
|
|
--spring.config.location=${JAR_PATH}/webapp.yml \
|
|
--logging.file=/dev/stderr |