view prod/update-inventory-app.sh @ 371:b371970462c3 production v2.10.0

DEP-21 update update-inventory-app.sh to pull inventory-importapp image
author Matt Calmes <calmes@ssdt-ohio.org>
date Sun, 29 Aug 2021 19:09:33 -0400
parents cf7166c5c52f
children be08b5a62a77
line wrap: on
line source
#!/bin/bash
#
# read required env variables
BASEDIR="$PWD"
source $BASEDIR/.env/ssdt-inventory-shared.properties
source $BASEDIR/.env/ssdt-inventory-app.properties
#
# docker login
echo "Attempting to login to $artifactUrl"
docker login $artifactUrl -u $artifactUser -p $artifactPassword
# docker pull app image
echo "Attempting to pull $artifactUrl/inventory-app:$appVersion"
docker pull $artifactUrl/inventory-app:$appVersion
# 
echo "Attempting to pull $artifactUrl/inventory-importapp:$appVersion"
docker pull $artifactUrl/inventory-importapp:$appVersion
# 
# docker stop inventory app container
echo "Attempting to stop $entityId-inventory-app container"
docker stop $entityId-inventory-app
#
# docker rm inventory app container
echo "Attempting to remove $entityId-inventory-app container"
docker rm $entityId-inventory-app
#
# docker run inventory app container based on new image
dockerRunCommand="docker run --name $entityId-inventory-app --restart=unless-stopped --network $entityId-inventory-net -e SPRING_DATASOURCE_URL=jdbc:postgresql://$entityId-inventory-db:5432/invdb"
dockerRunCommand="$dockerRunCommand -e SPRING_DATASOURCE_PASSWORD=$dbPassword -e SPRING_PROFILES_ACTIVE=prod -e APPLICATION_ADMIN_PASSWORD=$adminPassword -e JAVA_OPTS=$java_opts"
dockerRunCommand="$dockerRunCommand -e USAS_CONFIGURATION_HOST=$usasHost -e USAS_CONFIGURATION_PORT=$usasPort -e USAS_CONFIGURATION_APIKEY=$inventoryApiKey -e USAS_CONFIGURATION_REMOTEAPIKEY=$usasApiKey"
if [ ! -z "$virtualHost" ]; then
    dockerRunCommand="$dockerRunCommand -e VIRTUAL_HOST=$virtualHost"
fi
#
if [ ! -z "$virtualPort" ]; then
    dockerRunCommand="$dockerRunCommand -e VIRTUAL_PORT=$virtualPort"
fi
#
if [ ! -z "$letsencryptHost" ]; then
    dockerRunCommand="$dockerRunCommand -e LETSENCRYPT_HOST=$letsencryptHost"
fi
#
if [ ! -z "$letsencryptEmail" ]; then
    dockerRunCommand="$dockerRunCommand -e LETSENCRYPT_EMAIL=$letsencryptEmail"
fi
#
if [ ! -z "$hostPort" ]; then
    dockerRunCommand="$dockerRunCommand -p $hostPort"
fi
#
dockerRunCommand="$dockerRunCommand -d $artifactUrl/inventory-app:$appVersion"
#
# Execute constructed docker run command to create $entityId-inventory-app container connected to db and docker network
echo "Executing docker run command"
$dockerRunCommand