Mercurial > public > ssdt-docker
comparison prod/install-workflows-app.sh @ 526:cb688221b17b
Add ESS scripts and update workflows to connect to employee self service.
author | Marc Davis <marc.davis@mcoecn.org> |
---|---|
date | Wed, 10 Apr 2024 11:04:39 -0400 |
parents | 5909f75b4f13 |
children |
comparison
equal
deleted
inserted
replaced
525:c941bcc97e5b | 526:cb688221b17b |
---|---|
39 # | 39 # |
40 if [ ! -z "$uspsContext" ]; then | 40 if [ ! -z "$uspsContext" ]; then |
41 dockerRunCommand="$dockerRunCommand -e USPS_CONFIGURATION_CONTEXT=$uspsContext" | 41 dockerRunCommand="$dockerRunCommand -e USPS_CONFIGURATION_CONTEXT=$uspsContext" |
42 fi | 42 fi |
43 # | 43 # |
44 # If ESS Host is provided, assuming ESS connection needs configured. | |
45 # | |
46 if [ ! -z "$essHost" ]; then | |
47 echo "configuring employee self-service environment variables" | |
48 dockerRunCommand="$dockerRunCommand | |
49 -e ESS_HOST=$essHost | |
50 -e ESS_PORT=$essPort | |
51 -e ESS_API_KEY=$essApiKey | |
52 -e ESS_REMOTE_API_KEY=$essRemoteApiKey" | |
53 fi | |
54 # | |
55 if [ ! -z "$essContext" ]; then | |
56 dockerRunCommand="$dockerRunCommand -e ESS_CONTEXT=$essContext" | |
57 fi | |
58 # | |
44 if [ ! -z "$virtualHost" ]; then | 59 if [ ! -z "$virtualHost" ]; then |
45 dockerRunCommand="$dockerRunCommand -e VIRTUAL_HOST=$virtualHost" | 60 dockerRunCommand="$dockerRunCommand -e VIRTUAL_HOST=$virtualHost" |
46 fi | 61 fi |
47 # | 62 # |
48 if [ ! -z "$virtualPort" ]; then | 63 if [ ! -z "$virtualPort" ]; then |