view prod/install-inventory-db.sh @ 539:5d5525414c8d production tip

update exec-all-projects-docker.sh to search for ./env/*-shared.properties in place of ./env/ssdt-*-shared.properties. ESS doesn't follow the same pattern for property file names.
author Marc Davis <marc.davis@mcoecn.org>
date Mon, 13 May 2024 13:28:30 -0400
parents cf7166c5c52f
children
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-db.properties
#
# docker login
echo "Attempting to login to $artifactUrl"
docker login $artifactUrl -u $artifactUser -p $artifactPassword
# docker pull db image 
echo "Attempting to pull $artifactUrl/inventory-db:$dbVersion"
docker pull $artifactUrl/inventory-db:$dbVersion
#
# Create inventory specific docker network for $entityId 
echo "Attempting to create $entityId-inventory-net docker network"
docker network create $entityId-inventory-net
# docker run inventory-db (data mounted as volume) connected to $entityId-inventory-net docker network
echo "Attempting to execute docker run command"
docker run --name $entityId-inventory-db --restart=unless-stopped --mount source=$entityId-inventory-db,target=/var/lib/postgresql/data --network $entityId-inventory-net -e POSTGRES_DB=invdb -e POSTGRES_PASSWORD=$dbPassword -d $artifactUrl/inventory-db:$dbVersion