Skip to content

Commit

Permalink
updating release script to build, tag, and push individually
Browse files Browse the repository at this point in the history
  • Loading branch information
lalanza808 committed Dec 21, 2023
1 parent 3c82f29 commit 979c5cf
Showing 1 changed file with 30 additions and 23 deletions.
53 changes: 30 additions & 23 deletions release.sh
Original file line number Diff line number Diff line change
@@ -1,36 +1,43 @@
#!/bin/bash

# Build and tag container images for all services; monerod, nodemapper, and exporter
# Build and tag container images for each service based upon passed argument; monerod, nodemapper, or exporter
# All are manually tagged since some do not update as frequently as others. Bump the script
# to bump the image stored on Dockerhub.

set -ex

VERSION="${1}"
IMAGE=${1}
DH_USER=lalanza808
MONERO_VERSION=v0.18.3.1
MONERO_BASE=${DH_USER}/monerod
MONEROD_VERSION=v0.18.3.1
MONEROD_EXPORTER=${DH_USER}/monerod
EXPORTER_VERSION=1.0.0
EXPORTER_BASE=${DH_USER}/exporter
NODEMAPPER_VERSION=1.0.0
NODEMAPPER_BASE=${DH_USER}/nodemapper


# build nodemapper
docker build -t "${NODEMAPPER_BASE}:${NODEMAPPER_VERSION}" -f dockerfiles/nodemapper .
docker tag "${NODEMAPPER_BASE}:${NODEMAPPER_VERSION}" "${NODEMAPPER_BASE}:latest"
# docker push "${NODEMAPPER_BASE}:${NODEMAPPER_VERSION}"
# docker push "${NODEMAPPER_BASE}:latest"

# build exporter
docker build -t "${EXPORTER_BASE}:${EXPORTER_VERSION}" -f dockerfiles/exporter .
docker tag "${EXPORTER_BASE}:${EXPORTER_VERSION}" "${EXPORTER_BASE}:latest"
# docker push "${EXPORTER_BASE}:${EXPORTER_VERSION}"
# docker push "${EXPORTER_BASE}:latest"

# build monerod

docker build -t "${MONERO_BASE}:${MONERO_VERSION}" -f dockerfiles/nodemapper .
docker tag "${MONERO_BASE}:${MONERO_VERSION}" "${MONERO_BASE}:latest"
# docker push "${MONERO_BASE}:${MONERO_VERSION}"
# docker push "${MONERO_BASE}:latest"
if [[ "${IMAGE}" -eq "nodemapper" ]]
then
echo -e "[+] Building nodemapper"
docker build -t "${NODEMAPPER_BASE}:${NODEMAPPER_VERSION}" -f dockerfiles/nodemapper .
docker tag "${NODEMAPPER_BASE}:${NODEMAPPER_VERSION}" "${NODEMAPPER_BASE}:latest"
docker push "${NODEMAPPER_BASE}:${NODEMAPPER_VERSION}"
docker push "${NODEMAPPER_BASE}:latest"
fi

if [[ "${IMAGE}" -eq "exporter" ]]
then
echo -e "[+] Building exporter"
docker build -t "${EXPORTER_BASE}:${EXPORTER_VERSION}" -f dockerfiles/exporter .
docker tag "${EXPORTER_BASE}:${EXPORTER_VERSION}" "${EXPORTER_BASE}:latest"
docker push "${EXPORTER_BASE}:${EXPORTER_VERSION}"
docker push "${EXPORTER_BASE}:latest"
fi

if [[ "${IMAGE}" -eq "monerod" ]]
then
echo -e "[+] Building monerod"
docker build -t "${MONEROD_BASE}:${MONEROD_VERSION}" -f dockerfiles/monero .
docker tag "${MONEROD_BASE}:${MONEROD_VERSION}" "${MONEROD_BASE}:latest"
docker push "${MONEROD_BASE}:${MONEROD_VERSION}"
docker push "${MONEROD_BASE}:latest"
fi

0 comments on commit 979c5cf

Please sign in to comment.