kishore | 0fdcc61 | 2017-10-09 08:19:36 -0500 | [diff] [blame] | 1 | # Environment settings |
| 2 | # used by docker-compose AND by other shell scripts |
| 3 | # Host directory with config files |
| 4 | |
| 5 | LOGS_DIR=./logs |
| 6 | PROPS_DIR=./properties |
| 7 | |
| 8 | |
| 9 | # Directory within containers |
| 10 | WEBAPPS_DIR=/opt/apache-tomcat-8.0.37/webapps |
| 11 | |
| 12 | # Following are ALSO used in demo/boot/portal_vm_init.sh |
| 13 | EP_IMG_NAME=onap/portal-apps |
| 14 | DB_IMG_NAME=onap/portal-db |
| 15 | WMS_IMG_NAME=onap/portal-wms |
| 16 | CLI_IMG_NAME=onap/cli |
| 17 | |
| 18 | # Tag all images with this |
| 19 | PORTAL_TAG=1.3.0 |
| 20 | DOCKER_IMAGE_VERSION=1.3-STAGING-latest |
| 21 | CLI_DOCKER_VERSION=1.1-STAGING-latest |
| 22 | NEXUS_DOCKER_REPO=nexus3.onap.org:10003 |
kishore | b24e841 | 2017-10-12 15:44:40 -0500 | [diff] [blame] | 23 | |
| 24 | |
| 25 | # Optional settings with no defaults. |
| 26 | EXTRA_HOST_IP="" |
| 27 | EXTRA_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 | |