#!/bin/bash

for ARCH in amd64 arm64 arm; do
  docker push ${DOCKER_REPO}:${ARCH}-${DOCKER_TAG}
done
