blob: 0b7de9560e5725f3b63ce7ff2338652716e361ac [file] [log] [blame]
kishore0fdcc612017-10-09 08:19:36 -05001# Environment settings
2# used by docker-compose AND by other shell scripts
3# Host directory with config files
4
5LOGS_DIR=./logs
6PROPS_DIR=./properties
7
8
9# Directory within containers
10WEBAPPS_DIR=/opt/apache-tomcat-8.0.37/webapps
11
12# Following are ALSO used in demo/boot/portal_vm_init.sh
13EP_IMG_NAME=onap/portal-apps
14DB_IMG_NAME=onap/portal-db
15WMS_IMG_NAME=onap/portal-wms
16CLI_IMG_NAME=onap/cli
17
18# Tag all images with this
19PORTAL_TAG=1.3.0
20DOCKER_IMAGE_VERSION=1.3-STAGING-latest
21CLI_DOCKER_VERSION=1.1-STAGING-latest
22NEXUS_DOCKER_REPO=nexus3.onap.org:10003
kishoreb24e8412017-10-12 15:44:40 -050023
24
25# Optional settings with no defaults.
26EXTRA_HOST_IP=""
27EXTRA_HOST_NAME=""
28# Export shell environment variables on hosts with no DNS;
29# a line is added to docker container's /etc/hosts.
30# For example:
31#EXTRA_HOST_IP="-i ${HOST_IP}"
32#EXTRA_HOST_NAME="-n portal.api.simpledemo.openecomp.org"
33