We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9dae04f + 4edc992 commit 1dbbc53Copy full SHA for 1dbbc53
sync-images/build/build
@@ -6,8 +6,10 @@ WORKDIR=$(mktemp -td tox.XXXXXXXXXX)
6
7
cat << EOF > ./sync.yml
8
docker.io:
9
- images-by-tag-regex:
10
- grafana/grafana: ^(9\.?|[0-9]{2,}\.?)([0-9]*\.?){1,}$
+ images-by-semver:
+ nginx: ">= 1.26.0"
11
+ grafana/grafana: ">= 9.0.0"
12
EOF
-
13
+# make sure we pull the last stable image
14
+podman pull quay.io/skopeo/stable
15
podman run --rm --security-opt label=disable -v ./sync.yml:/sync.yml:ro quay.io/skopeo/stable sync --src yaml --dest docker /sync.yml "${DEST_REGISTRY}" --dest-username "${DEST_USERNAME}" --dest-password "${DEST_PASSWORD}"
0 commit comments