bumper/hooks/push
2019-12-31 14:57:01 -05:00

9 lines
No EOL
200 B
Bash

#!/bin/bash
# Custom build script to push images for all supported architectures.
for arch in amd64 arm32v5 arm32v7 arm64v8
do
echo "Pushing $IMAGE_NAME-$arch"
docker push $IMAGE_NAME-$arch
done