Containers should not run as root by default
[aai/sparky-be.git] / sparkybe-onap-application / src / main / scripts / start.sh
1 #!/bin/sh
2
3 APP_HOME="/opt/app/sparky"
4 CONFIG_HOME=${APP_HOME}/config
5
6 PROPS="-DAPP_HOME=${APP_HOME} -DCONFIG_HOME=${CONFIG_HOME} -Dlogging.config=${CONFIG_HOME}/logging/logback.xml"
7
8 find ${MICRO_HOME}  -name "*.sh" -exec chmod +x {} +
9
10 JAVA_CMD="exec java";
11 JAR_CMD="exec jar";
12
13 ###
14 set -x
15 {JAR_CMD} ufv ${APP_HOME}/lib/sparkybe-onap-application*.jar \
16     -C ${CONFIG_HOME}/portal/ BOOT-INF/classes/portal.properties \
17     -C ${CONFIG_HOME}/portal/ BOOT-INF/classes/key.properties > /dev/null 2>&1
18
19 #
20 # change the working directory so that Spring-Boot will pick up the config folder from the right path
21 #
22 cd $APP_HOME
23
24 ${JAVA_CMD} -Xms1024m -Xmx4096m $PROPS -jar ${APP_HOME}/lib/sparkybe-onap-application*.jar