diff options
author | talasila <talasila@research.att.com> | 2017-02-21 19:42:15 -0500 |
---|---|---|
committer | talasila <talasila@research.att.com> | 2017-02-21 19:42:41 -0500 |
commit | 471fcd4192e77aedd29113058507a03f87d2e235 (patch) | |
tree | 60ae39d354ce3e67f4e40c50659f0545314c51d9 /deliveries/new_start.sh | |
parent | 10c33cd35f772940a02cfdd72863a178776efb8d (diff) |
added control scripts
Change-Id: If764b6e8329f474b6637c408c1594e069f128f61
Signed-off-by: talasila <talasila@research.att.com>
Diffstat (limited to 'deliveries/new_start.sh')
-rw-r--r-- | deliveries/new_start.sh | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/deliveries/new_start.sh b/deliveries/new_start.sh new file mode 100644 index 00000000..80847a85 --- /dev/null +++ b/deliveries/new_start.sh @@ -0,0 +1,22 @@ +BASEDIR=/PROJECT/OpenSource/UbuntuEP +PORTALDIR=/opt/apache-tomcat-8.0.37/webapps/ECOMPPORTAL +SDKAPPDIR=/opt/apache-tomcat-8.0.37/webapps/ECOMPSDKAPP +DBCAPPDIR=/opt/apache-tomcat-8.0.37/webapps/ECOMPDBCAPP +PORTALPROPDIR=ECOMPPORTALAPP +SDKAPPPROPDIR=ECOMPSDKAPP +DBCAPPPROPDIR=ECOMPDBCAPP +#docker rm ep_1610 +docker run -d --name "1610-1" \ +-p 8989:8080 -p 8010:8009 -p 8006:8005 \ +-v ${BASEDIR}/etc/${PORTALPROPDIR}/system.properties:${PORTALDIR}/WEB-INF/conf/system.properties \ +-v ${BASEDIR}/etc/${PORTALPROPDIR}/fusion.properties:${PORTALDIR}/WEB-INF/fusion/conf/fusion.properties \ +-v ${BASEDIR}/etc/${PORTALPROPDIR}/portal.properties:${PORTALDIR}/WEB-INF/classes/portal.properties \ +-v ${BASEDIR}/etc/${PORTALPROPDIR}/openid-connect.properties:${PORTALDIR}/WEB-INF/classes/openid-connect.properties \ +-v ${BASEDIR}/etc/${SDKAPPPROPDIR}/system.properties:${SDKAPPDIR}/WEB-INF/conf/system.properties \ +-v ${BASEDIR}/etc/${SDKAPPPROPDIR}/portal.properties:${SDKAPPDIR}/WEB-INF/classes/portal.properties \ +-v ${BASEDIR}/etc/${DBCAPPPROPDIR}/system.properties:${DBCAPPDIR}/WEB-INF/conf/system.properties \ +-v ${BASEDIR}/etc/${DBCAPPPROPDIR}/portal.properties:${DBCAPPDIR}/WEB-INF/classes/portal.properties \ +-v ${BASEDIR}/etc/${DBCAPPPROPDIR}/dbcapp.properties:${DBCAPPDIR}/WEB-INF/dbcapp/dbcapp.properties \ +-v ${BASEDIR}/etc/${DBCAPPPROPDIR}/fusion.properties:${DBCAPPDIR}/WEB-INF/fusion/fusion.properties \ +-v ${BASEDIR}/log:/opt/apache-tomcat-8.0.37/logs \ +ep:1610-1 |