scripts: Change Storagenode arm32v6 to arm32v5
We don't build "multinode" nor "storagenode" docker images for armv6 architecture, instead we build for armv5. Fix the script that publish the manifest for those images for a specific tag to use armv5 for not failing when executing. Change-Id: I7d859d8718240e1cd0dae6489e7e5c3b4068ff6e
This commit is contained in:
parent
94ae196189
commit
fc4b0e41f0
@ -9,14 +9,14 @@ for v in alpha arm beta latest; do
|
||||
for app in multinode storagenode; do
|
||||
docker manifest create --amend storjlabs/$app:$v \
|
||||
storjlabs/$app:${TAG}-amd64 \
|
||||
storjlabs/$app:${TAG}-arm32v6 \
|
||||
storjlabs/$app:${TAG}-arm32v5 \
|
||||
storjlabs/$app:${TAG}-arm64v8
|
||||
|
||||
docker manifest annotate storjlabs/$app:$v \
|
||||
storjlabs/$app:${TAG}-amd64 --os linux --arch amd64
|
||||
|
||||
docker manifest annotate storjlabs/$app:$v \
|
||||
storjlabs/$app:${TAG}-arm32v6 --os linux --arch arm --variant v6
|
||||
storjlabs/$app:${TAG}-arm32v5 --os linux --arch arm --variant v5
|
||||
|
||||
docker manifest annotate storjlabs/$app:$v \
|
||||
storjlabs/$app:${TAG}-arm64v8 --os linux --arch arm64 --variant v8
|
||||
|
Loading…
Reference in New Issue
Block a user