mirror of
https://github.com/bilde2910/Hauk.git
synced 2026-01-23 02:24:09 +00:00
6 lines
114 B
Bash
Executable file
6 lines
114 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Push multiarch images
|
|
for arch in amd64 arm32v7 arm64v8; do
|
|
docker push $IMAGE_NAME-${arch}
|
|
done
|