login and Certman AAF Integration changes
[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 # Following are ALSO used in demo/boot/portal_vm_init.sh
6 EP_IMG_NAME=onap/portal-app
7 SDK_IMG_NAME=onap/portal-sdk
8 DB_IMG_NAME=onap/portal-db
9 CDR_IMG_NAME=onap/music/cassandra_music
10 ZK_IMG_NAME=zookeeper
11 WMS_IMG_NAME=onap/portal-wms
12 # Deployed with portal; built elsewhere
13 CLI_IMG_NAME=onap/cli
14
15 # This is the first portion of the Docker image tag
16 # that is published to the ONAP registry.
17 PORTAL_VERSION=2.3.0
18
19 # This is used during builds and in docker-compose;
20 # it is never published to the ONAP registry.
21 PORTAL_TAG=casablanca
22
23 # Name of directory in apps container (NOT host)
24 WEBAPPS_DIR=/opt/apache-tomcat-8.0.37/webapps
25 TOMCAT_DIR=/opt/apache-tomcat-8.0.37
26
27 # Certs
28 TOMCAT_KEY=keystoreONAP.keystore
29 TOMCAT_TRUST=truststoreONAPall.jks
30 CERT_PWD=changeit
31
32
33 # Required settings with default values.
34 # Export shell environment variables on ALL hosts.
35 LOGS_DIR=./logs
36 PROPS_DIR=./properties_simpledemo
37
38 # Optional settings with no defaults.
39 EXTRA_HOST_IP=""
40 EXTRA_HOST_NAME=""
41 # Export shell environment variables on hosts with no DNS;
42 # a line is added to docker container's /etc/hosts.
43 # For example:
44 #EXTRA_HOST_IP="-i 10.11.12.13"
45 #EXTRA_HOST_NAME="-n portal.api.simpledemo.onap.org"