1#!/bin/bash
2
3# Configure docker image build for framework and proxy images
4
5# Tag for the prerequisite image to build and use
6CHART_PREREQ_IMAGE_NAME=${CHART_PREREQ_IMAGE_NAME:-harbor.opscloud.eumetsat.int/chart/prereq:1.5}
7
8# Tag for the CHART-framework (core) image to build
9CHART_FRAMEWORK_IMAGE_NAME=${CHART_FRAMEWORK_IMAGE_NAME:-harbor.opscloud.eumetsat.int/chart/framework:epssg-3.5}
10
11# Tag for the web proxy image to build
12CHART_PROXY_IMAGE_NAME=${CHART_PROXY_IMAGE_NAME:-harbor.opscloud.eumetsat.int/chart/proxy:1.5}