aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel GarcĂ­a <[email protected]>2020-07-24 23:05:29 +0200
committerGitHub <[email protected]>2020-07-24 23:05:29 +0200
commit2626e66873436dcd2cca4f2ad65449feeb9c8f3d (patch)
treefaf202d4369cb41bbe5bcb24fc043eb5bf23ffec
parentfd1354d00e6a6a087df2a68463c6bd95b46b315a (diff)
parent81e0e1b339ad79189ed4bc7bb9e500330ee82239 (diff)
downloadvaultwarden-1.16.1.tar.gz
vaultwarden-1.16.1.zip
Merge pull request #1069 from jjlin/master1.16.1
Skip cleanup of `arm32v6` arch-specific tags
-rwxr-xr-xhooks/push6
1 files changed, 6 insertions, 0 deletions
diff --git a/hooks/push b/hooks/push
index c22095ee..4b64fc3f 100755
--- a/hooks/push
+++ b/hooks/push
@@ -88,6 +88,12 @@ jwt=$(curl -sS -X POST \
repo="${DOCKER_REPO#*/}"
for arch in ${arches[@]}; do
+ # Don't delete the `arm32v6` tag; Docker can't seem to properly
+ # auto-select that image on Armv6 platforms like Raspberry Pi 1 and Zero
+ # (https://github.com/moby/moby/issues/41017).
+ if [[ ${arch} == 'arm32v6' ]]; then
+ continue
+ fi
tag="${DOCKER_TAG}-${arch}"
echo ">>> Deleting '${repo}:${tag}'..."
curl -sS -X DELETE \