blob: 0b7de9560e5725f3b63ce7ff2338652716e361ac [file] [log] [blame]
kishore328996f2017-09-08 17:15:42 -05001# Environment settings
2# used by docker-compose AND by other shell scripts
kishore328996f2017-09-08 17:15:42 -05003# Host directory with config files
kishore6eebdba2017-10-03 11:12:57 -05004
5LOGS_DIR=./logs
6PROPS_DIR=./properties
7
kishore328996f2017-09-08 17:15:42 -05008
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
kishorebbca0cf2017-10-09 16:59:38 -050013EP_IMG_NAME=onap/portal-apps
14DB_IMG_NAME=onap/portal-db
15WMS_IMG_NAME=onap/portal-wms
kishore6eebdba2017-10-03 11:12:57 -050016CLI_IMG_NAME=onap/cli
kishore328996f2017-09-08 17:15:42 -050017
kishore6eebdba2017-10-03 11:12:57 -050018# Tag all images with this
19PORTAL_TAG=1.3.0
20DOCKER_IMAGE_VERSION=1.3-STAGING-latest
21CLI_DOCKER_VERSION=1.1-STAGING-latest
kishorebbca0cf2017-10-09 16:59:38 -050022NEXUS_DOCKER_REPO=nexus3.onap.org:10003
kishore92d70d62017-10-11 14:51:31 -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