3b2fa140445b264c720b4aa279ecbc15a4e4325e
[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
26 # Required settings with default values.
27 # Export shell environment variables on ALL hosts.
28 LOGS_DIR=./logs
29 PROPS_DIR=./properties_simpledemo
30
31 # Optional settings with no defaults.
32 EXTRA_HOST_IP=""
33 EXTRA_HOST_NAME=""
34 # Export shell environment variables on hosts with no DNS;
35 # a line is added to docker container's /etc/hosts.
36 # For example:
37 #EXTRA_HOST_IP="-i 10.11.12.13"
38 #EXTRA_HOST_NAME="-n portal.api.simpledemo.onap.org"