Update shell scripts

This commit is contained in:
Santiago Lo Coco 2023-11-20 11:57:19 -03:00
parent 649c152b05
commit 5736188d4c
2 changed files with 20 additions and 13 deletions

View File

@ -1,26 +1,33 @@
#!/usr/bin/env bash #!/usr/bin/env bash
usage() { usage() {
printf "$0 usage: \n -b: build all\n -v Postgres version\n" $0 printf "$0 usage: \n -b: force build all\n -v Postgres version\n" $0
exit 0 exit 0
} }
build=N forceBuild=N
while getopts ":hd:bv:" arg; do while getopts ":hd:bv:" arg; do
case $arg in case $arg in
b) build=Y ;; b) forceBuild=Y ;;
v) version=${OPTARG} ;; v) version=${OPTARG} ;;
h | *) usage ;; h | *) usage ;;
esac esac
done done
[ "$build" = 'N' ] && exit 0
export API=data/sample-api-users
docker build $API -f $API/Dockerfile.prod -t api:prod
export CLIENT=data/sample-client-users
docker build $CLIENT -f $CLIENT/Dockerfile -t client:prod
export DB=data/db
version="${version-13.3}" version="${version-13.3}"
docker build $DB -f $DB/Dockerfile --build-arg "VERSION=${version}" -t "db:${version}"
if [ -z "$(docker images -q api:prod)" ] || [ "$forceBuild" = 'Y' ]; then
export API=data/sample-api-users
docker build $API -f $API/Dockerfile.prod -t api:prod
fi
if [ -z "$(docker images -q client:prod)" ] || [ "$forceBuild" = 'Y' ]; then
export CLIENT=data/sample-client-users
docker build $CLIENT -f $CLIENT/Dockerfile -t client:prod
fi
if [ -z "$(docker images -q db:${version})" ] || [ "$forceBuild" = 'Y' ]; then
export DB=data/db
docker build $DB -f $DB/Dockerfile --build-arg "VERSION=${version}" -t "db:${version}"
fi

4
run.sh
View File

@ -39,7 +39,7 @@ if [ "$interactive" == true ]; then
fi fi
if [ -n "$postgres_version" ]; then if [ -n "$postgres_version" ]; then
./build.sh -b -v "${postgres_version}" ./build.sh -v "${postgres_version}"
sed -ni "/repository: db/ { sed -ni "/repository: db/ {
p; p;
n; n;
@ -51,7 +51,7 @@ if [ -n "$postgres_version" ]; then
} }
p;" helm/values.yaml p;" helm/values.yaml
else else
./build.sh -b ./build.sh
fi fi
if [ -n "$enable_ssl" ]; then if [ -n "$enable_ssl" ]; then