Added Junits
[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 WMS_IMG_NAME=onap/portal-wms
10 # Deployed with portal; built elsewhere
11 CLI_IMG_NAME=onap/cli
12
13 # This is the first portion of the Docker image tag
14 # that is published to the ONAP registry.
15 PORTAL_VERSION=2.1
16
17 # This is used during builds and in docker-compose;
18 # it is never published to the ONAP registry.
19 PORTAL_TAG=beijing
20
21 # Name of directory in apps container (NOT host)
22 WEBAPPS_DIR=/opt/apache-tomcat-8.0.37/webapps
23
24 # Required settings with default values.
25 # Export shell environment variables on ALL hosts.
26 LOGS_DIR=./logs
27 PROPS_DIR=./properties_rackspace
28
29 # Optional settings with no defaults.
30 EXTRA_HOST_IP=""
31 EXTRA_HOST_NAME=""
32 # Export shell environment variables on hosts with no DNS;
33 # a line is added to docker container's /etc/hosts.
34 # For example:
35 #EXTRA_HOST_IP="-i 10.11.12.13"
36 #EXTRA_HOST_NAME="-n portal.api.simpledemo.onap.org"