From d36bde09e3b6ffc38ca17abfefb4106e9ebb5314 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Wed, 10 Feb 2021 14:06:22 +0100 Subject: [PATCH] skopeo: use insecure-policy Not sure what this is about, but it prevents me from pushing. --- push-all | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/push-all b/push-all index 81bd296..8f9e232 100755 --- a/push-all +++ b/push-all @@ -16,7 +16,7 @@ for attr in $(echo "$releases_json" | jq -r "keys[]") ; do src=docker-archive://$file dst=docker://$registry/$image_prefix/$attr:$image_tag echo "--- attr=$attr src=$src dst=$dst" - skopeo copy "$src" "$dst" + skopeo copy --insecure-policy "$src" "$dst" done echo OK