6c3f824a5e688e9b6e4561284a13427aef25e569
[portal.git] / deliveries / .env
1 # Environment settings
2 # used by docker-compose AND by other shell scripts
3 # The name ".env" is required by docker-compose
4
5 # Dockerfile names.  To skip building one or more docker images,
6 # change dockerfile name to "skip"
7 PORTAL_DOCKERFILE=Dockerfile.portal
8 SDK_DOCKERFILE=Dockerfile.sdk
9 DB_DOCKERFILE=Dockerfile.mariadb
10 WMS_DOCKERFILE=Dockerfile.wms
11 # These are FE only and BE only docker images.  Change to Dockerfile.fe and Dockerfile.be to enable.
12 FE_DOCKERFILE=skip
13 BE_DOCKERFILE=skip
14
15 # Relative directories and filenames for builds
16 SDK_APP_DIR=sdk/ecomp-sdk/epsdk-app-os
17 SDK_WAR_DIR=sdk/ecomp-sdk/epsdk-app-os/target
18 SDK_WAR_FILE=epsdk-app-os.war
19 BE_WAR_DIR=ecomp-portal-BE-os/target
20 BE_WAR_FILE=portal-be-os.war
21 FE_DIR=portal-FE-os/dist/public
22 WIDGET_MS_JAR_DIR=ecomp-portal-widget-ms/widget-ms/target
23 WIDGET_MS_JAR_FILE=widget-ms.jar
24
25 # Following are ALSO used in demo/boot/portal_vm_init.sh
26 EP_IMG_NAME=onap/portal-app
27 SDK_IMG_NAME=onap/portal-sdk
28 FE_IMG_NAME=onap/portal-fe
29 BE_IMG_NAME=onap/portal-be
30 DB_IMG_NAME=onap/portal-db
31 WMS_IMG_NAME=onap/portal-wms
32
33 CDR_IMG_NAME=onap/music/cassandra_music
34 ZK_IMG_NAME=zookeeper
35
36 # Deployed with portal; built elsewhere
37 CLI_IMG_NAME=onap/cli
38
39 # This is the first portion of the Docker image tag
40 # that is published to the ONAP registry.
41 PORTAL_VERSION=3.5.0
42
43 # This is used during builds and in docker-compose;
44 # it is never published to the ONAP registry.
45 PORTAL_TAG=guilin
46
47 # Name of directory in apps container (NOT host)
48 WEBAPPS_DIR=/opt/apache-tomcat-8.0.37/webapps
49 TOMCAT_DIR=/opt/apache-tomcat-8.0.37
50
51 # Certs
52 TOMCAT_KEY=keystoreONAP.keystore
53 TOMCAT_TRUST=truststoreONAPall.jks
54 CERT_PWD=changeit
55
56 # Required settings with default values.
57 # Export shell environment variables on ALL hosts.
58 SERVER_XML_DIR=.
59 LOGS_DIR=./logs
60 PROPS_DIR=./properties_simpledemo
61
62 # Optional settings with no defaults.
63 EXTRA_HOST_IP=""
64 EXTRA_HOST_NAME=""
65 # Export shell environment variables on hosts with no DNS;
66 # a line is added to docker container's /etc/hosts.
67 # For example:
68 #EXTRA_HOST_IP="-i 10.11.12.13"
69 #EXTRA_HOST_NAME="-n portal.api.simpledemo.onap.org"
70
71 #Portal Context
72 PORTALCONTEXT=ONAPPORTAL
73 FECONTEXT=ONAPPORTAL
74 SDKCONTEXT=ONAPPORTALSDK
75
76 #Nexus repository for os_docker_base/push/release scripts
77 NEXUS_REPO=nexus3.onap.org:10003